Merge pull request #1 from codefresh-io/test-change-argo-cd
Initial Codefresh ArgoCD - App version v2.4.15-cap-CR-15677-rollout-rollback
This commit is contained in:
commit
2b99d3dafd
4 changed files with 14 additions and 13 deletions
|
@ -1,8 +1,8 @@
|
|||
apiVersion: v2
|
||||
appVersion: v2.4.15
|
||||
appVersion: v2.4.15-cap-CR-15677-rollout-rollback
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 5.7.0-cf-init
|
||||
version: 5.7.0-cf-initial
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
sources:
|
||||
|
|
|
@ -354,7 +354,7 @@ NAME: my-release
|
|||
| global.additionalLabels | object | `{}` | Additional labels to add to all resources |
|
||||
| global.hostAliases | list | `[]` | Mapping between IP and hostnames that will be injected as entries in the pod's hosts files |
|
||||
| global.image.imagePullPolicy | string | `"IfNotPresent"` | If defined, a imagePullPolicy applied to all Argo CD deployments |
|
||||
| global.image.repository | string | `"quay.io/argoproj/argocd"` | If defined, a repository applied to all Argo CD deployments |
|
||||
| global.image.repository | string | `"quay.io/codefresh/argocd"` | If defined, a repository applied to all Argo CD deployments |
|
||||
| global.image.tag | string | `""` | Overrides the global Argo CD image tag whose default is the chart appVersion |
|
||||
| global.imagePullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry |
|
||||
| global.logging.format | string | `"text"` | Set the global logging format. Either: `text` or `json` |
|
||||
|
@ -816,8 +816,8 @@ server:
|
|||
| redis.extraArgs | list | `[]` | Additional command line arguments to pass to redis-server |
|
||||
| redis.extraContainers | list | `[]` | Additional containers to be added to the redis pod |
|
||||
| redis.image.imagePullPolicy | string | `"IfNotPresent"` | Redis imagePullPolicy |
|
||||
| redis.image.repository | string | `"public.ecr.aws/docker/library/redis"` | Redis repository |
|
||||
| redis.image.tag | string | `"7.0.5-alpine"` | Redis tag |
|
||||
| redis.image.repository | string | `"quay.io/codefresh/redis"` | Redis repository |
|
||||
| redis.image.tag | string | `"7.0.4-alpine"` | Redis tag |
|
||||
| redis.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
|
||||
| redis.initContainers | list | `[]` | Init containers to add to the redis pod |
|
||||
| redis.metrics.containerPort | int | `9121` | Port to use for redis-exporter sidecar |
|
||||
|
@ -1010,7 +1010,7 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
|||
| notifications.cm.create | bool | `true` | Whether helm chart creates controller config map |
|
||||
| notifications.containerSecurityContext | object | `{}` | Container Security Context |
|
||||
| notifications.context | object | `{}` | Define user-defined context |
|
||||
| notifications.enabled | bool | `true` | Enable notifications controller |
|
||||
| notifications.enabled | bool | `false` | Enable notifications controller |
|
||||
| notifications.extraArgs | list | `[]` | Extra arguments to provide to the controller |
|
||||
| notifications.extraEnv | list | `[]` | Additional container environment variables |
|
||||
| notifications.extraEnvFrom | list | `[]` (See [values.yaml]) | envFrom to pass to the controller |
|
||||
|
|
|
@ -37,7 +37,8 @@ spec:
|
|||
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.applicationSet.image.imagePullPolicy }}
|
||||
command:
|
||||
- entrypoint.sh
|
||||
- argocd-applicationset-controller
|
||||
{{/* Codefresh - change argocd-applicationset-controller to applicationset-controller*/}}
|
||||
- applicationset-controller
|
||||
- --logformat
|
||||
- {{ default .Values.global.logging.format .Values.applicationSet.logFormat }}
|
||||
- --loglevel
|
||||
|
|
|
@ -43,7 +43,7 @@ crds:
|
|||
global:
|
||||
image:
|
||||
# -- If defined, a repository applied to all Argo CD deployments
|
||||
repository: quay.io/argoproj/argocd
|
||||
repository: quay.io/codefresh/argocd
|
||||
# -- Overrides the global Argo CD image tag whose default is the chart appVersion
|
||||
tag: ""
|
||||
# -- If defined, a imagePullPolicy applied to all Argo CD deployments
|
||||
|
@ -980,9 +980,9 @@ redis:
|
|||
## Redis image
|
||||
image:
|
||||
# -- Redis repository
|
||||
repository: public.ecr.aws/docker/library/redis
|
||||
repository: quay.io/codefresh/redis
|
||||
# -- Redis tag
|
||||
tag: 7.0.5-alpine
|
||||
tag: 7.0.4-alpine
|
||||
# -- Redis imagePullPolicy
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
|
@ -2046,10 +2046,10 @@ applicationSet:
|
|||
image:
|
||||
# -- Repository to use for the application set controller
|
||||
# @default -- `""` (defaults to global.image.repository)
|
||||
repository: ""
|
||||
repository: "quay.io/codefresh/applicationset"
|
||||
# -- Tag to use for the application set controller
|
||||
# @default -- `""` (defaults to global.image.tag)
|
||||
tag: ""
|
||||
tag: "v0.4.2-CR-13254-remove-private-logs"
|
||||
# -- Image pull policy for the application set controller
|
||||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: ""
|
||||
|
@ -2259,7 +2259,7 @@ applicationSet:
|
|||
## Notifications controller
|
||||
notifications:
|
||||
# -- Enable notifications controller
|
||||
enabled: true
|
||||
enabled: false
|
||||
|
||||
# -- Notifications controller name string
|
||||
name: notifications-controller
|
||||
|
|
Loading…
Reference in a new issue