From 140a16295ee5eba8150c48fdcef46ca440101164 Mon Sep 17 00:00:00 2001 From: Michael-Kruggel Date: Wed, 10 Jul 2024 19:07:10 +0000 Subject: [PATCH 1/2] fix: metrics now enabled by default --- values/common.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/values/common.yaml b/values/common.yaml index 0bf4863..1a261b6 100644 --- a/values/common.yaml +++ b/values/common.yaml @@ -3,7 +3,7 @@ artifactory: secret: artifactory-admin-credentials dataKey: adminCreds openMetrics: - enabled: false + enabled: true database: type: postgresql driver: org.postgresql.Driver From b3eca43e6e6ab3d7903ca9aa94f24bba62889705 Mon Sep 17 00:00:00 2001 From: Michael-Kruggel Date: Wed, 10 Jul 2024 19:08:09 +0000 Subject: [PATCH 2/2] docs: update README with note on default admin creds --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 70ad8e0..7d818e6 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,20 @@ The released packages can be found in [ghcr](https://github.com/defenseunicorns/ > [!TIP] > To get a list of tasks to run you can use `uds run --list`! +## Redeploying/Upgrading pre-existing Artifactory + +> [!IMPORTANT] +> **NOTE**: If admin credentials are changed or different from what is generated in the `artifactory-admin-credentials` secret, in the `values/common.yaml` set: + +``` yaml +artifactory: + admin: + secret: "" + dataKey: "" +``` + +The credentials will be reset to what is in the secret if not set to empty or might break the deployment/upgrade entirely. + ## Contributing Please see the [CONTRIBUTING.md](./CONTRIBUTING.md)