Skip to content

Commit 1e5ba43

Browse files
Fix(job): argument list too long (#383)
* update value-validation job
1 parent 22f998e commit 1e5ba43

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

charts/gitops-runtime/templates/hooks/pre-install/validate-values.yaml

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
{{- if not .Values.installer.skipValidation }}
2+
apiVersion: v1
3+
kind: ConfigMap
4+
metadata:
5+
name: validate-values-config
6+
annotations:
7+
helm.sh/hook: pre-install,pre-upgrade
8+
helm.sh/hook-delete-policy: hook-succeeded,before-hook-creation,hook-failed
9+
helm.sh/hook-weight: "-10"
10+
data:
11+
values.yaml: |
12+
{{ .Values | toYaml | indent 4 }}
13+
14+
---
215
apiVersion: batch/v1
316
kind: Job
417
metadata:
@@ -26,7 +39,12 @@ spec:
2639
value: {{ .Chart.Version }}
2740
command: ["sh", "-c"]
2841
args:
29-
- |
30-
echo {{ .Values | toYaml | quote }} > values.yaml
31-
cf helm validate --values values.yaml --namespace ${NAMESPACE} --version ${VERSION} --hook --log-level debug
42+
- cf helm validate --values /job_tmp/values.yaml --namespace ${NAMESPACE} --version ${VERSION} --hook --log-level debug
43+
volumeMounts:
44+
- name: customized-values
45+
mountPath: "/job_tmp"
46+
volumes:
47+
- name: customized-values
48+
configMap:
49+
name: validate-values-config
3250
{{- end }}

0 commit comments

Comments
 (0)