Skip to content

Commit feed848

Browse files
committed
fix typo, remove unneeded var
1 parent 8481e4b commit feed848

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

applications/wg-easy/Taskfile.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ includes:
66

77
vars:
88
# Application configuration
9-
APP_NAME: '{{.REPLICATED_APP | default "wg-easy"}}'
10-
APP_SLUG: '{{.REPLICATED_APP_SLUG | default "wg-easy-cre"}}'
9+
APP_SLUG: '{{.REPLICATED_APP | default "wg-easy-cre"}}'
1110

1211
# Release configuration
13-
RELEASE_CHANNELd: '{{.RELEASE_CHANNEL | default "Unstable"}}'
12+
RELEASE_CHANNEL: '{{.RELEASE_CHANNEL | default "Unstable"}}'
1413
RELEASE_VERSION: '{{.RELEASE_VERSION | default "0.0.1"}}'
1514
RELEASE_NOTES: '{{.RELEASE_NOTES | default "Release created via task release-create"}}'
1615

@@ -234,7 +233,7 @@ tasks:
234233
- find ./replicated -name '*.yaml' -not -name 'config.yaml' -exec cp {} ./release/ \; 2>/dev/null || true
235234

236235
# extract namespaces from helmChart files
237-
- yq ea '[.spec.namespace] | unique' */replicated/helmChart-*.yaml | yq '.spec.additionalNamespaces *= load("/dev/stdin") | .spec.additionalNamespaces += "*" ' replicated/application.yaml > release/application.yaml.new
236+
- yq ea '[.spec.namespace] | unique' ./charts/*/replicated/helmChart-*.yaml | yq '.spec.additionalNamespaces *= load("/dev/stdin") | .spec.additionalNamespaces += "*" ' replicated/application.yaml > release/application.yaml.new
238237
- mv release/application.yaml.new release/application.yaml
239238

240239
# set helmChart versions from associated helm Chart.yaml

0 commit comments

Comments
 (0)