Skip to content

Commit 86e8816

Browse files
committed
chore(controller): remove docker keyword from charts
1 parent 16fece2 commit 86e8816

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

charts/controller/templates/controller-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
heritage: drycc
88
annotations:
9-
component.drycc.cc/version: {{ .Values.docker_tag }}
9+
component.drycc.cc/version: {{ .Values.image_tag }}
1010
spec:
1111
replicas: 1
1212
strategy:
@@ -25,8 +25,8 @@ spec:
2525
serviceAccount: drycc-controller
2626
containers:
2727
- name: drycc-controller
28-
image: {{.Values.docker_registry}}{{.Values.org}}/controller:{{.Values.docker_tag}}
29-
imagePullPolicy: {{.Values.pull_policy}}
28+
image: {{.Values.image_registry}}{{.Values.org}}/controller:{{.Values.image_tag}}
29+
imagePullPolicy: {{.Values.image_pull_policy}}
3030
livenessProbe:
3131
httpGet:
3232
path: /healthz
@@ -75,7 +75,7 @@ spec:
7575
- name: "DRYCC_REGISTRY_SECRET_PREFIX"
7676
value: "{{ .Values.global.registry_secret_prefix }}"
7777
- name: "IMAGE_PULL_POLICY"
78-
value: "{{ .Values.app_pull_policy }}"
78+
value: "{{ .Values.app_image_pull_policy }}"
7979
- name: "KUBERNETES_CLUSTER_DOMAIN"
8080
value: "{{ .Values.global.cluster_domain }}"
8181
{{- if (.Values.app_storage_class) }}

charts/controller/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
org: "drycc"
2-
pull_policy: "Always"
3-
docker_tag: "canary"
4-
docker_registry: ""
5-
app_pull_policy: "Always"
2+
image_pull_policy: "Always"
3+
image_tag: "canary"
4+
image_registry: ""
5+
app_image_pull_policy: "Always"
66
# A comma-separated list of URLs to send app release information to
77
# See https://drycc.com/docs/workflow/managing-workflow/deploy-hooks
88
deploy_hook_urls: ""

0 commit comments

Comments
 (0)