fix(templates): move extraArgs from .Values.controller to .Values (#3447)

* fix(templates): move extraArgs from .Values.controller to .Values

* update questions

* whoops

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
Stavros Kois
2022-08-12 10:40:46 +02:00
committed by GitHub
co-authored by Kjeld Schouten-Lebbing
parent 0e40f84cb8
commit 16fbffb961
738 changed files with 765 additions and 11 deletions
+6
View File
@@ -187,6 +187,12 @@ include_questions(){
/# Include{controllerExpert}/ { for (i=0;i<n;++i) print a[i]; next }
1' templates/questions/controller/controllerExpert.yaml ${target}/questions.yaml > "tmp${chartname}" && mv "tmp${chartname}" ${target}/questions.yaml
# Replace # Include{controllerExpertExtraArgs} with the standard controllerExpertExtraArgs codesnippet
awk 'NR==FNR { a[n++]=$0; next }
/# Include{controllerExpertExtraArgs}/ { for (i=0;i<n;++i) print a[i]; next }
1' templates/questions/controller/controllerExpertExtraArgs.yaml ${target}/questions.yaml > "tmp${chartname}" && mv "tmp${chartname}" ${target}/questions.yaml
# Replace # Include{controllerExpertCommand} with the standard controllerExpertCommand codesnippet
awk 'NR==FNR { a[n++]=$0; next }
/# Include{controllerExpertCommand}/ { for (i=0;i<n;++i) print a[i]; next }