Merge branch 'master' into feature/securitycontext
This commit is contained in:
commit
ff24516136
3 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v1
|
||||
appVersion: "1.3.4"
|
||||
appVersion: "1.3.6"
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 1.5.0
|
||||
|
|
|
@ -31,7 +31,7 @@ $ helm install --name my-release argo/argo-cd
|
|||
|-----|------|---------|
|
||||
| global.image.imagePullPolicy | If defined, a imagePullPolicy applied to all ArgoCD deployments. | `"IfNotPresent"` |
|
||||
| global.image.repository | If defined, a repository applied to all ArgoCD deployments. | `"argoproj/argocd"` |
|
||||
| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.2.3"` |
|
||||
| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.3.6"` |
|
||||
| global.securityContext | Toggle and define securityContext | See [values.yaml](values.yaml) |
|
||||
| nameOverride | Provide a name in place of `argocd` | `"argocd"` |
|
||||
| configs.knownHosts.data.ssh_known_hosts | Known Hosts | See [values.yaml](values.yaml) |
|
||||
|
@ -137,7 +137,7 @@ $ helm install --name my-release argo/argo-cd
|
|||
| server.certificate.domain | Certificate manager domain | `"argocd.example.com"` |
|
||||
| server.certificate.enabled | Enables a certificate manager certificate. | `false` |
|
||||
| server.certificate.issuer | Certificate manager issuer | `{}` |
|
||||
| server.config | URL for Argo CD | `{}` |
|
||||
| server.config | [General Argo CD configuration](https://argoproj.github.io/argo-cd/operator-manual/declarative-setup/#repositories) | See [values.yaml](values.yaml) |
|
||||
| server.containerPort | Server container port. | `8080` |
|
||||
| server.extraArgs | Additional arguments for the server. A list of key:value pairs. | `[]` |
|
||||
| server.env | Environment variables for the server. | `[]` |
|
||||
|
@ -168,7 +168,7 @@ $ helm install --name my-release argo/argo-cd
|
|||
| server.podAnnotations | Annotations for the repo server pods | `{}` |
|
||||
| server.podLabels | Labels for the repo server pods | `{}` |
|
||||
| server.priorityClassName | Priority class for the repo server | `""` |
|
||||
| server.rbacConfig | Argo CD RBAC policy https://argoproj.github.io/argo-cd/operator-manual/rbac/ | `See [values.yaml](values.yaml)` |
|
||||
| server.rbacConfig | [Argo CD RBAC policy](https://argoproj.github.io/argo-cd/operator-manual/rbac/) | `{}` |
|
||||
| server.readinessProbe.failureThreshold | int | `3` |
|
||||
| server.readinessProbe.initialDelaySeconds | int | `10` |
|
||||
| server.readinessProbe.periodSeconds | int | `10` |
|
||||
|
|
|
@ -10,7 +10,7 @@ installCRDs: true
|
|||
global:
|
||||
image:
|
||||
repository: argoproj/argocd
|
||||
tag: v1.3.4
|
||||
tag: v1.3.6
|
||||
imagePullPolicy: IfNotPresent
|
||||
securityContext: {}
|
||||
# runAsUser: 999
|
||||
|
@ -23,7 +23,7 @@ controller:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.3.4
|
||||
tag: # v1.3.6
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Argo controller commandline flags
|
||||
|
@ -250,7 +250,7 @@ server:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.3.4
|
||||
tag: # v1.3.6
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to argocd-server
|
||||
|
@ -486,7 +486,7 @@ repoServer:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.3.4
|
||||
tag: # v1.3.6
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to argocd-repo-server
|
||||
|
|
Loading…
Reference in a new issue