Merge branch 'master' into pod-topology-spread-constraints
This commit is contained in:
commit
a57ad5dcbb
6 changed files with 14 additions and 5 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: "v1.0.2"
|
appVersion: "v1.0.2"
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
@ -11,4 +11,4 @@ maintainers:
|
||||||
- name: jessesuen
|
- name: jessesuen
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: ServiceMonitor selector labels match metrics Service"
|
- "[Fixed]: use image.tag in app labels if provided"
|
||||||
|
|
|
@ -38,7 +38,7 @@ Common labels
|
||||||
helm.sh/chart: {{ include "argo-rollouts.chart" . }}
|
helm.sh/chart: {{ include "argo-rollouts.chart" . }}
|
||||||
{{ include "argo-rollouts.selectorLabels" . }}
|
{{ include "argo-rollouts.selectorLabels" . }}
|
||||||
{{- if .Chart.AppVersion }}
|
{{- if .Chart.AppVersion }}
|
||||||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
app.kubernetes.io/version: {{ default .Chart.AppVersion $.Values.controller.image.tag | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
app.kubernetes.io/part-of: argo-rollouts
|
app.kubernetes.io/part-of: argo-rollouts
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-image-updater
|
name: argocd-image-updater
|
||||||
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.1
|
version: 0.2.0
|
||||||
appVersion: v0.10.1
|
appVersion: v0.10.1
|
||||||
home: https://github.com/argoproj-labs/argocd-image-updater
|
home: https://github.com/argoproj-labs/argocd-image-updater
|
||||||
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Add scratch space (emptyDir) for /tmp"
|
- "[Added]: Ability to provide custom environment variables"
|
||||||
|
|
|
@ -67,6 +67,7 @@ The `config.registries` value can be used exactly as it looks in the documentati
|
||||||
| config.logLevel | string | `"info"` | ArgoCD Image Update log level |
|
| config.logLevel | string | `"info"` | ArgoCD Image Update log level |
|
||||||
| config.registries | list | `[]` | ArgoCD Image Updater registries list configuration. More information [here](https://argocd-image-updater.readthedocs.io/en/stable/configuration/registries/) |
|
| config.registries | list | `[]` | ArgoCD Image Updater registries list configuration. More information [here](https://argocd-image-updater.readthedocs.io/en/stable/configuration/registries/) |
|
||||||
| extraArgs | list | `[]` | Extra arguments for argocd-image-updater not defined in config.argocd |
|
| extraArgs | list | `[]` | Extra arguments for argocd-image-updater not defined in config.argocd |
|
||||||
|
| extraEnv | list | `[]` | Extra environment variables for argocd-image-updater |
|
||||||
| fullnameOverride | string | `""` | Global fullname (argocd-image-updater.fullname in _helpers.tpl) override |
|
| fullnameOverride | string | `""` | Global fullname (argocd-image-updater.fullname in _helpers.tpl) override |
|
||||||
| image.pullPolicy | string | `"Always"` | Default image pull policy |
|
| image.pullPolicy | string | `"Always"` | Default image pull policy |
|
||||||
| image.repository | string | `"argoprojlabs/argocd-image-updater"` | Default image repository |
|
| image.repository | string | `"argoprojlabs/argocd-image-updater"` | Default image repository |
|
||||||
|
|
|
@ -51,6 +51,9 @@ spec:
|
||||||
optional: true
|
optional: true
|
||||||
- name: IMAGE_UPDATER_LOGLEVEL
|
- name: IMAGE_UPDATER_LOGLEVEL
|
||||||
value: {{ .Values.config.logLevel }}
|
value: {{ .Values.config.logLevel }}
|
||||||
|
{{- with .Values.extraEnv }}
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
|
|
|
@ -27,6 +27,11 @@ extraArgs: []
|
||||||
# - --once
|
# - --once
|
||||||
# - --registries-conf-path /app/config/registries.conf
|
# - --registries-conf-path /app/config/registries.conf
|
||||||
|
|
||||||
|
# -- Extra environment variables for argocd-image-updater
|
||||||
|
extraEnv: []
|
||||||
|
# - name: AWS_REGION
|
||||||
|
# value: "us-west-1"
|
||||||
|
|
||||||
config:
|
config:
|
||||||
# Described in detail here https://argocd-image-updater.readthedocs.io/en/stable/install/running/#flags
|
# Described in detail here https://argocd-image-updater.readthedocs.io/en/stable/install/running/#flags
|
||||||
argocd:
|
argocd:
|
||||||
|
|
Loading…
Reference in a new issue