chore: Update argocd version to 1.6.1 (#379)
Signed-off-by: Alin Balutoiu <alinbalutoiu@gmail.com> Co-authored-by: Spencer Gilbert <Spencer.Gilbert@gmail.com>
This commit is contained in:
parent
6a26babc28
commit
ad6893449f
4 changed files with 39 additions and 10 deletions
|
@ -1,8 +1,8 @@
|
|||
apiVersion: v1
|
||||
appVersion: "1.5.4"
|
||||
appVersion: "1.6.1"
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 2.3.7
|
||||
version: 2.4.0
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
keywords:
|
||||
|
|
|
@ -62,7 +62,7 @@ Helm v3 has removed the `install-crds` hook so CRDs are now populated by files i
|
|||
|-----|------|---------|
|
||||
| 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.5.3"` |
|
||||
| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.6.1"` |
|
||||
| global.securityContext | Toggle and define securityContext | See [values.yaml](values.yaml) |
|
||||
| global.imagePullSecrets | If defined, uses a Secret to pull an image from a private Docker registry or repository. | `[]` |
|
||||
| global.hostAliases | Mapping between IP and hostnames that will be injected as entries in the pod's hosts files | `[]` |
|
||||
|
@ -292,7 +292,7 @@ through `xxx.extraArgs`
|
|||
| redis.enabled | Enable redis | `true` |
|
||||
| redis.image.imagePullPolicy | Redis imagePullPolicy | `"IfNotPresent"` |
|
||||
| redis.image.repository | Redis repository | `"redis"` |
|
||||
| redis.image.tag | Redis tag | `"5.0.3"` |
|
||||
| redis.image.tag | Redis tag | `"5.0.8"` |
|
||||
| redis.name | Redis name | `"redis"` |
|
||||
| redis.env | Environment variables for the Redis server. | `[]` |
|
||||
| redis.nodeSelector | [Node selector](https://kubernetes.io/docs/user-guide/node-selection/) | `{}` |
|
||||
|
@ -311,3 +311,4 @@ through `xxx.extraArgs`
|
|||
| redis-ha.redis.config.save | Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled | `""` |
|
||||
| redis-ha.haproxy.enabled | Enabled HAProxy LoadBalancing/Proxy | `true` |
|
||||
| redis-ha.haproxy.metrics.enabled | HAProxy enable prometheus metric scraping | `true` |
|
||||
| redis-ha.image.tag | Redis tag | `"5.0.8-alpine"` |
|
||||
|
|
|
@ -37,6 +37,18 @@ spec:
|
|||
operation:
|
||||
description: Operation contains requested operation parameters.
|
||||
properties:
|
||||
info:
|
||||
items:
|
||||
properties:
|
||||
name:
|
||||
type: string
|
||||
value:
|
||||
type: string
|
||||
required:
|
||||
- name
|
||||
- value
|
||||
type: object
|
||||
type: array
|
||||
initiatedBy:
|
||||
description: OperationInitiator holds information about the operation
|
||||
initiator
|
||||
|
@ -574,7 +586,7 @@ spec:
|
|||
type: boolean
|
||||
type: object
|
||||
syncOptions:
|
||||
description: Options allow youe to specify whole app sync-options
|
||||
description: Options allow you to specify whole app sync-options
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
|
@ -615,6 +627,7 @@ spec:
|
|||
message:
|
||||
type: string
|
||||
status:
|
||||
description: Represents resource health status
|
||||
type: string
|
||||
type: object
|
||||
history:
|
||||
|
@ -848,6 +861,18 @@ spec:
|
|||
operation:
|
||||
description: Operation is the original requested operation
|
||||
properties:
|
||||
info:
|
||||
items:
|
||||
properties:
|
||||
name:
|
||||
type: string
|
||||
value:
|
||||
type: string
|
||||
required:
|
||||
- name
|
||||
- value
|
||||
type: object
|
||||
type: array
|
||||
initiatedBy:
|
||||
description: OperationInitiator holds information about the
|
||||
operation initiator
|
||||
|
@ -1413,6 +1438,7 @@ spec:
|
|||
message:
|
||||
type: string
|
||||
status:
|
||||
description: Represents resource health status
|
||||
type: string
|
||||
type: object
|
||||
hook:
|
||||
|
|
|
@ -10,7 +10,7 @@ installCRDs: true
|
|||
global:
|
||||
image:
|
||||
repository: argoproj/argocd
|
||||
tag: v1.5.4
|
||||
tag: v1.6.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
securityContext: {}
|
||||
# runAsUser: 999
|
||||
|
@ -28,7 +28,7 @@ controller:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.5.4
|
||||
tag: # v1.6.1
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Argo controller commandline flags
|
||||
|
@ -243,7 +243,7 @@ redis:
|
|||
|
||||
image:
|
||||
repository: redis
|
||||
tag: 5.0.3
|
||||
tag: 5.0.8
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
containerPort: 6379
|
||||
|
@ -305,6 +305,8 @@ redis-ha:
|
|||
enabled: true
|
||||
metrics:
|
||||
enabled: true
|
||||
image:
|
||||
tag: 5.0.8-alpine
|
||||
|
||||
## Server
|
||||
server:
|
||||
|
@ -321,7 +323,7 @@ server:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.5.4
|
||||
tag: # v1.6.1
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to argocd-server
|
||||
|
@ -597,7 +599,7 @@ repoServer:
|
|||
|
||||
image:
|
||||
repository: # argoproj/argocd
|
||||
tag: # v1.5.4
|
||||
tag: # v1.6.1
|
||||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to argocd-repo-server
|
||||
|
|
Loading…
Reference in a new issue