From 163cc45827765250818f771c91b8c079f8f87d9f Mon Sep 17 00:00:00 2001 From: gartov Date: Fri, 20 Jan 2023 14:58:37 -0800 Subject: [PATCH 1/2] Update README.md Clean up language around how Concourse reads some values directly from secrets. These arguments do not have to be explicitly passed into Concourse. Add 'local-users` secret example. Needed to which secret should contain the `local-users` data. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a6b5c05..68d94244 100644 --- a/README.md +++ b/README.md @@ -387,6 +387,7 @@ mv worker-key worker/worker-key mv session-signing-key web/session-signing-key mv host-key web/host-key cp worker/worker-key-pub web/worker-key-pub +mv local-users web/local-users # other concourse secrets (there may be more than the 3 listed below) mv encryption-key concourse/encryption-key @@ -505,9 +506,9 @@ web: By default, this chart uses a PostgreSQL database deployed as a chart dependency (see the [PostgreSQL chart](https://github.com/bitnami/charts/blob/master/bitnami/postgresql/README.md)), with default values for username, password, and database name. These can be modified by setting the `postgresql.auth.*` values. -You can also bring your own PostgreSQL. To do so, set `postgresql.enabled` to `false`, and then configure Concourse's `postgres` values (`concourse.web.postgres.*`). +You can also bring your own PostgreSQL. To do so, set `postgresql.enabled` to `false`, and then configure Concourse's `postgres` values (`concourse.web.postgres.*` See [values.yaml](values.yaml)). -Note that some values get set in the form of secrets, like `postgresql-user`, `postgresql-password`, and others (see [templates/web-secrets.yaml](templates/web-secrets.yaml) for possible values and the [secrets section](#secrets) on this README for guidance on how to set those secrets). +Note that Concourse (by default) will attempt to read in some values directly from secrets. Therefore, these values do not have to be explicitly passed into Concourse as individual arguments, or as members of lists or files. (e.g. Part of values.yaml, etc.) Some examples of these secret values are: `postgresql-user`, `postgresql-password` (in secret "[my-release]-concourse" or "[my-release]-web"), and others. See [templates/web-secrets.yaml](templates/web-secrets.yaml) for possible values and the [secrets section](#secrets) on this README for guidance on how to set those secrets. ### Credential Management From ea1f9f5b07e670e8382fbfa12d3f29bdfae71fa3 Mon Sep 17 00:00:00 2001 From: gartov Date: Fri, 27 Jan 2023 11:21:25 -0800 Subject: [PATCH 2/2] fixed storageClass setting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 68d94244..43cdb32e 100644 --- a/README.md +++ b/README.md @@ -430,7 +430,7 @@ persistence: worker: ## Persistent Volume Storage Class. ## - class: generic + storageClass: generic ## Persistent Volume Access Mode. ## @@ -506,7 +506,7 @@ web: By default, this chart uses a PostgreSQL database deployed as a chart dependency (see the [PostgreSQL chart](https://github.com/bitnami/charts/blob/master/bitnami/postgresql/README.md)), with default values for username, password, and database name. These can be modified by setting the `postgresql.auth.*` values. -You can also bring your own PostgreSQL. To do so, set `postgresql.enabled` to `false`, and then configure Concourse's `postgres` values (`concourse.web.postgres.*` See [values.yaml](values.yaml)). +You can also bring your own PostgreSQL. To do so, set `postgresql.enabled` to `false`, and then configure Concourse's `postgres` values (`concourse.web.postgres.*`) See [values.yaml](values.yaml). Note that Concourse (by default) will attempt to read in some values directly from secrets. Therefore, these values do not have to be explicitly passed into Concourse as individual arguments, or as members of lists or files. (e.g. Part of values.yaml, etc.) Some examples of these secret values are: `postgresql-user`, `postgresql-password` (in secret "[my-release]-concourse" or "[my-release]-web"), and others. See [templates/web-secrets.yaml](templates/web-secrets.yaml) for possible values and the [secrets section](#secrets) on this README for guidance on how to set those secrets.