From 5b22c6677afa2e3c60eeb4150ff04440dfd1c292 Mon Sep 17 00:00:00 2001 From: Fran Mulero Date: Tue, 7 Jun 2022 14:03:18 +0200 Subject: [PATCH] Fix tolerations and topologySpreadConstraints default values (#10623) Signed-off-by: Fran Mulero --- bitnami/concourse/Chart.yaml | 2 +- bitnami/concourse/README.md | 48 +++++++++++++++++------------------ bitnami/concourse/values.yaml | 4 +-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/bitnami/concourse/Chart.yaml b/bitnami/concourse/Chart.yaml index 296dcab263..9712859d72 100644 --- a/bitnami/concourse/Chart.yaml +++ b/bitnami/concourse/Chart.yaml @@ -30,4 +30,4 @@ name: concourse sources: - https://github.com/bitnami/bitnami-docker-concourse - https://github.com/concourse/concourse -version: 1.3.3 +version: 1.3.4 diff --git a/bitnami/concourse/README.md b/bitnami/concourse/README.md index dfe7ab6065..fe40b7f85b 100644 --- a/bitnami/concourse/README.md +++ b/bitnami/concourse/README.md @@ -81,27 +81,27 @@ The command removes all the Kubernetes components associated with the chart and ### Common Concourse Parameters -| Name | Description | Value | -| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -| `image.registry` | image registry | `docker.io` | -| `image.repository` | image repository | `bitnami/concourse` | -| `image.tag` | image tag (immutable tags are recommended) | `7.7.1-debian-10-r54` | -| `image.pullPolicy` | image pull policy | `IfNotPresent` | -| `image.pullSecrets` | image pull secrets | `[]` | -| `secrets.localAuth.enabled` | the use of local authentication (basic auth). | `true` | -| `secrets.localUsers` | List of `username:password` or `username:bcrypted_password` combinations for all your local concourse users. Auto-generated if not set | `""` | -| `secrets.teamAuthorizedKeys` | Array of team names and public keys for team external workers | `[]` | -| `secrets.conjurAccount` | Account for Conjur auth provider. | `""` | -| `secrets.conjurAuthnLogin` | Host username for Conjur auth provider. | `""` | -| `secrets.conjurAuthnApiKey` | API key for host used for Conjur auth provider. Either API key or token file can be used, but not both. | `""` | -| `secrets.conjurAuthnTokenFile` | Token file used for Conjur auth provider if running in Kubernetes or IAM. Either token file or API key can be used, but not both. | `""` | -| `secrets.conjurCACert` | CA Certificate to specify if conjur instance is deployed with a self-signed cert | `""` | -| `secrets.hostKey` | Concourse Host Keys. | `""` | -| `secrets.hostKeyPub` | Concourse Host Keys. | `""` | -| `secrets.sessionSigningKey` | Concourse Session Signing Keys. | `""` | -| `secrets.workerKey` | Concourse Worker Keys. | `""` | -| `secrets.workerKeyPub` | Concourse Worker Keys. | `""` | -| `secrets.workerAdditionalCerts` | Additional certificates to add to the worker nodes | `""` | +| Name | Description | Value | +| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | +| `image.registry` | image registry | `docker.io` | +| `image.repository` | image repository | `bitnami/concourse` | +| `image.tag` | image tag (immutable tags are recommended) | `7.8.0-debian-11-r0` | +| `image.pullPolicy` | image pull policy | `IfNotPresent` | +| `image.pullSecrets` | image pull secrets | `[]` | +| `secrets.localAuth.enabled` | the use of local authentication (basic auth). | `true` | +| `secrets.localUsers` | List of `username:password` or `username:bcrypted_password` combinations for all your local concourse users. Auto-generated if not set | `""` | +| `secrets.teamAuthorizedKeys` | Array of team names and public keys for team external workers | `[]` | +| `secrets.conjurAccount` | Account for Conjur auth provider. | `""` | +| `secrets.conjurAuthnLogin` | Host username for Conjur auth provider. | `""` | +| `secrets.conjurAuthnApiKey` | API key for host used for Conjur auth provider. Either API key or token file can be used, but not both. | `""` | +| `secrets.conjurAuthnTokenFile` | Token file used for Conjur auth provider if running in Kubernetes or IAM. Either token file or API key can be used, but not both. | `""` | +| `secrets.conjurCACert` | CA Certificate to specify if conjur instance is deployed with a self-signed cert | `""` | +| `secrets.hostKey` | Concourse Host Keys. | `""` | +| `secrets.hostKeyPub` | Concourse Host Keys. | `""` | +| `secrets.sessionSigningKey` | Concourse Session Signing Keys. | `""` | +| `secrets.workerKey` | Concourse Worker Keys. | `""` | +| `secrets.workerKeyPub` | Concourse Worker Keys. | `""` | +| `secrets.workerAdditionalCerts` | Additional certificates to add to the worker nodes | `""` | ### Concourse Web parameters @@ -186,7 +186,7 @@ The command removes all the Kubernetes components associated with the chart and | `web.affinity` | Affinity for web pods assignment | `{}` | | `web.nodeSelector` | Node labels for web pods assignment | `{}` | | `web.tolerations` | Tolerations for web pods assignment | `[]` | -| `web.topologySpreadConstraints` | Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template | `{}` | +| `web.topologySpreadConstraints` | Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template | `[]` | | `web.priorityClassName` | Priority Class to use for each pod (Concourse web) | `""` | | `web.schedulerName` | Use an alternate scheduler, e.g. "stork". | `""` | | `web.terminationGracePeriodSeconds` | Seconds Concourse web pod needs to terminate gracefully | `""` | @@ -271,7 +271,7 @@ The command removes all the Kubernetes components associated with the chart and | `worker.affinity` | Affinity for pod assignment | `{}` | | `worker.nodeSelector` | Node labels for pod assignment | `{}` | | `worker.tolerations` | Tolerations for worker pod assignment | `[]` | -| `worker.topologySpreadConstraints` | Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template | `{}` | +| `worker.topologySpreadConstraints` | Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template | `[]` | | `worker.priorityClassName` | Priority Class to use for each pod (Concourse worker) | `""` | | `worker.schedulerName` | Use an alternate scheduler, e.g. "stork". | `""` | | `worker.terminationGracePeriodSeconds` | Seconds Concourse worker pod needs to terminate gracefully | `""` | @@ -361,7 +361,7 @@ The command removes all the Kubernetes components associated with the chart and | `volumePermissions.enabled` | Enable init container that changes the owner and group of the persistent volume | `false` | | `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` | | `volumePermissions.image.repository` | Init container volume-permissions image repository | `bitnami/bitnami-shell` | -| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `10-debian-10-r434` | +| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `11-debian-11-r0` | | `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` | | `volumePermissions.image.pullSecrets` | Init container volume-permissions image pull secrets | `[]` | | `volumePermissions.resources.limits` | Init container volume-permissions resource limits | `{}` | diff --git a/bitnami/concourse/values.yaml b/bitnami/concourse/values.yaml index 05110f3517..66d61dab37 100644 --- a/bitnami/concourse/values.yaml +++ b/bitnami/concourse/values.yaml @@ -508,7 +508,7 @@ web: ## @param web.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods ## - topologySpreadConstraints: {} + topologySpreadConstraints: [] ## @param web.priorityClassName Priority Class to use for each pod (Concourse web) ## priorityClassName: "" @@ -800,7 +800,7 @@ worker: ## @param worker.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods ## - topologySpreadConstraints: {} + topologySpreadConstraints: [] ## @param worker.priorityClassName Priority Class to use for each pod (Concourse worker) ## priorityClassName: ""