We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d28f948 + c1b0d31 commit ec72729Copy full SHA for ec72729
Chart.yaml renamed to helm/Chart.yaml
templates/service.yaml renamed to helm/templates/service.yaml
values.yaml renamed to helm/values.yaml
scripts/helm.sh
@@ -65,13 +65,16 @@ fi
65
# path of `helm package` except for the directory name :/
66
temp_dir="$(mktemp -d)"
67
68
-cd ./
+cd .
69
+mkdir -p build
70
+cp ./LICENSE build
71
+cp -r helm/* build
72
log "--- Packaging helm chart for version $version ($output_path)"
73
helm package \
74
--version "$version" \
75
--app-version "$version" \
76
--destination "$temp_dir" \
- . 1>&2
77
+ ./build 1>&2
78
79
log "Moving helm chart to $output_path"
80
cp "$temp_dir"/*.tgz "$output_path"
0 commit comments