fix: create service account for repo server by default (#1161)
This PR enables the creation of a service account for repo server by default. Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
0a5422f20a
commit
ec6cd35fed
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.2.5
|
appVersion: v2.2.5
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 3.35.2
|
version: 3.35.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,4 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Quote clusterResources value to avoid invalid Secret manifest"
|
- "[Fixed]: Create service account for repo server by default"
|
||||||
|
|
|
@ -369,7 +369,7 @@ NAME: my-release
|
||||||
| repoServer.service.portName | string | `"https-repo-server"` | Repo server service port name |
|
| repoServer.service.portName | string | `"https-repo-server"` | Repo server service port name |
|
||||||
| repoServer.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
| repoServer.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
||||||
| repoServer.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
| repoServer.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
||||||
| repoServer.serviceAccount.create | bool | `false` | Create repo server service account |
|
| repoServer.serviceAccount.create | bool | `true` | Create repo server service account |
|
||||||
| repoServer.serviceAccount.name | string | `""` | Repo server service account name |
|
| repoServer.serviceAccount.name | string | `""` | Repo server service account name |
|
||||||
| repoServer.tolerations | list | `[]` | [Tolerations] for use with node taints |
|
| repoServer.tolerations | list | `[]` | [Tolerations] for use with node taints |
|
||||||
| repoServer.topologySpreadConstraints | list | `[]` | Assign custom [TopologySpreadConstraints] rules to the repo server |
|
| repoServer.topologySpreadConstraints | list | `[]` | Assign custom [TopologySpreadConstraints] rules to the repo server |
|
||||||
|
|
|
@ -1588,7 +1588,7 @@ repoServer:
|
||||||
## If create is set to true, make sure to uncomment the name and update the rbac section below
|
## If create is set to true, make sure to uncomment the name and update the rbac section below
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# -- Create repo server service account
|
# -- Create repo server service account
|
||||||
create: false
|
create: true
|
||||||
# -- Repo server service account name
|
# -- Repo server service account name
|
||||||
name: "" # "argocd-repo-server"
|
name: "" # "argocd-repo-server"
|
||||||
# -- Annotations applied to created service account
|
# -- Annotations applied to created service account
|
||||||
|
|
Loading…
Reference in a new issue