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.
1 parent 6ac55b2 commit 40f3c97Copy full SHA for 40f3c97
helmfile.tpl/helmfile-core.yaml
@@ -0,0 +1,4 @@
1
+helmfiles:
2
+ - path: ../helmfile.d/*.gotmpl
3
+ selectors:
4
+ - app=core
src/cmd/install.ts
@@ -99,7 +99,10 @@ export const installAll = async () => {
99
d.info('Deploying charts containing label app=core')
100
await hf(
101
{
102
- labelOpts: ['app=core'],
+ // Includes a selector on labels app=core.
103
+ // Using file to circumvent parallel processing, which
104
+ // cannot handle dependencies across multiple files.
105
+ fileOpts: 'helmfile.tpl/helmfile-core.yaml',
106
logLevel: logLevelString(),
107
args: hfArgs,
108
},
0 commit comments