Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/atlantis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v1
appVersion: v0.35.1
description: A Helm chart for Atlantis https://www.runatlantis.io
name: atlantis
version: 5.18.2
version: 5.19.0
keywords:
- terraform
home: https://www.runatlantis.io
Expand Down
3 changes: 2 additions & 1 deletion charts/atlantis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ extraManifests:
| hostAliases | list | `[]` | Optionally specify hostAliases for the Atlantis pod. Check values.yaml for examples. |
| hostNetwork | bool | `false` | |
| image.pullPolicy | string | `"Always"` | |
| image.repository | string | `"ghcr.io/runatlantis/atlantis"` | |
| image.registry | string | `"ghcr.io/"` | |
| image.repository | string | `"runatlantis/atlantis"` | |
| image.tag | string | `""` | If not set appVersion field from Chart.yaml is used |
| imagePullSecrets | list | `[]` | Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/. Check values.yaml for examples. |
| ingress.annotations | object | `{}` | Check values.yaml for examples. |
Expand Down
2 changes: 1 addition & 1 deletion charts/atlantis/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.registry }}{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if .Values.containerSecurityContext }}
securityContext: {{- toYaml .Values.containerSecurityContext | nindent 12 }}
Expand Down
7 changes: 6 additions & 1 deletion charts/atlantis/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,15 @@
"type": "object",
"description": "Atlantis image configuration.",
"properties": {
"registry": {
"description": "image registry.",
"type": "string",
"default": "ghcr.io/"
},
"repository": {
"description": "image repository.",
"type": "string",
"default": "ghcr.io/runatlantis/atlantis"
"default": "runatlantis/atlantis"
},
"tag": {
"description": "image tag. if not set appVersion field from Chart.yaml is used",
Expand Down
3 changes: 2 additions & 1 deletion charts/atlantis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ serviceAccountSecrets: {}
containerPort: 0

image:
repository: ghcr.io/runatlantis/atlantis
registry: ghcr.io/
repository: runatlantis/atlantis
# -- If not set appVersion field from Chart.yaml is used
tag: ""
pullPolicy: Always
Expand Down