Skip to content

Commit d789c42

Browse files
committed
fix typo in ghar template
1 parent 38fec92 commit d789c42

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

charts/github-actions-runner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.4
18+
version: 0.3.5
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/github-actions-runner/templates/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ spec:
3434
- name: workspace-volume
3535
emptyDir: {}
3636
{{- end }}
37-
{{- if .Values.runner.customCerts.caCertificatesCrt }}
37+
{{- if .Values.runner.customCerts.configMapRef }}
3838
- name: ca-certificates-crt
3939
configMap:
40-
name: "{{ .Values.runner.customCerts.caCertificatesCrt }}"
40+
name: "{{ .Values.runner.customCerts.configMapRef }}"
4141
{{- end }}
4242
- name: config-files
4343
configMap:
@@ -61,7 +61,7 @@ spec:
6161
volumeMounts:
6262
- name: workspace-volume
6363
mountPath: /kaniko/workspace/
64-
{{- if .Values.runner.customCerts.caCertificatesCrt }}
64+
{{- if .Values.runner.customCerts.configMapRef }}
6565
- name: ca-certificates-crt
6666
mountPath: /kaniko/ssl/certs/
6767
{{- end }}
@@ -78,7 +78,7 @@ spec:
7878
image: {{ include "github-actions-runner.runner-image" . }}
7979
imagePullPolicy: {{ .Values.image.pullPolicy }}
8080
volumeMounts:
81-
{{- if .Values.runner.customCerts.caCertificatesCrt }}
81+
{{- if .Values.runner.customCerts.configMapRef }}
8282
- name: ca-certificates-crt
8383
mountPath: /etc/ssl/certs/
8484
{{- end }}

0 commit comments

Comments
 (0)