We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c4f96 commit adad551Copy full SHA for adad551
bin/util.sh
@@ -49,10 +49,8 @@ create_production_yaml() {
49
copy_template_if_absent etc/production.yaml etc/base.yaml
50
tempfile=$(mktemp)
51
mv etc/production.yaml $tempfile
52
- # only keep the 'atomicInstall', etc. fields
53
- cat $tempfile | grep -vE "^\s*#" | grep -E "atomicInstall|kubeContext|server_name|maintainer_email" > etc/production.yaml
54
- # only keep the '_install: true/false' fields
55
- cat $tempfile | grep -vE "^\s*#" | grep -B 1 --no-group-separator "_install:" >> etc/production.yaml
+ # remove all '_chart_version' fields
+ cat $tempfile | grep -v _chart_version > etc/production.yaml
56
}
57
58
# Copies the template (defined by the given config file with suffix
0 commit comments