parent
							
								
									7543c25637
								
							
						
					
					
						commit
						7d86dc5efc
					
				|  | @ -856,7 +856,7 @@ ns: INLINE_NS | ||||||
| 		Namespace:           "", | 		Namespace:           "", | ||||||
| 		Selectors:           []string{}, | 		Selectors:           []string{}, | ||||||
| 		Env:                 "default", | 		Env:                 "default", | ||||||
| 		FileOrDir:           "/path/to/helmfile.yaml", | 		FileOrDir:           "/path/to/helmfile.yaml.gotmpl", | ||||||
| 	}, files) | 	}, files) | ||||||
| 
 | 
 | ||||||
| 	expectNoCallsToHelm(app) | 	expectNoCallsToHelm(app) | ||||||
|  | @ -1026,7 +1026,7 @@ bar: "bar1" | ||||||
| 			Env:                 "default", | 			Env:                 "default", | ||||||
| 			ValuesFiles:         []string{"overrides.yaml"}, | 			ValuesFiles:         []string{"overrides.yaml"}, | ||||||
| 			Set:                 map[string]any{"bar": "bar2", "baz": "baz1"}, | 			Set:                 map[string]any{"bar": "bar2", "baz": "baz1"}, | ||||||
| 			FileOrDir:           "helmfile.yaml", | 			FileOrDir:           "helmfile.yaml.gotmpl", | ||||||
| 		}, files) | 		}, files) | ||||||
| 
 | 
 | ||||||
| 		expectNoCallsToHelm(app) | 		expectNoCallsToHelm(app) | ||||||
|  | @ -1147,7 +1147,7 @@ x: | ||||||
| 				Env:                 testcase.env, | 				Env:                 testcase.env, | ||||||
| 				ValuesFiles:         []string{"overrides.yaml"}, | 				ValuesFiles:         []string{"overrides.yaml"}, | ||||||
| 				Set:                 map[string]any{"x": map[string]any{"hoge": "hoge_set", "fuga": "fuga_set"}}, | 				Set:                 map[string]any{"x": map[string]any{"hoge": "hoge_set", "fuga": "fuga_set"}}, | ||||||
| 				FileOrDir:           "helmfile.yaml", | 				FileOrDir:           "helmfile.yaml.gotmpl", | ||||||
| 			}, files) | 			}, files) | ||||||
| 
 | 
 | ||||||
| 			expectNoCallsToHelm(app) | 			expectNoCallsToHelm(app) | ||||||
|  |  | ||||||
|  | @ -1,221 +1,16 @@ | ||||||
| found 3 helmfile state files in helmfile.d: /path/to/helmfile.d/helmfile_1.yaml, /path/to/helmfile.d/helmfile_2.yaml, /path/to/helmfile.d/helmfile_3.yaml | found 3 helmfile state files in helmfile.d: /path/to/helmfile.d/helmfile_1.yaml, /path/to/helmfile.d/helmfile_2.yaml, /path/to/helmfile.d/helmfile_3.yaml | ||||||
| processing file "helmfile_1.yaml" in directory "/path/to/helmfile.d" | processing file "helmfile_1.yaml" in directory "/path/to/helmfile.d" | ||||||
| changing working directory to "/path/to/helmfile.d" | changing working directory to "/path/to/helmfile.d" | ||||||
| first-pass rendering starting for "helmfile_1.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile_1.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: environments: |  | ||||||
|  2:   development: {} |  | ||||||
|  3:   shared: {} |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile_1.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile_1.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: environments: |  | ||||||
|  2:   development: {} |  | ||||||
|  3:   shared: {} |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| first-pass rendering starting for "helmfile_1.yaml.part.1": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile_1.yaml.part.1": |  | ||||||
|  0: releases: |  | ||||||
|  1: - name: logging |  | ||||||
|  2:   chart: incubator/raw |  | ||||||
|  3:   namespace: kube-system |  | ||||||
|  4:  |  | ||||||
|  5: - name: kubernetes-external-secrets |  | ||||||
|  6:   chart: incubator/raw |  | ||||||
|  7:   namespace: kube-system |  | ||||||
|  8:   needs: |  | ||||||
|  9:   - kube-system/logging |  | ||||||
| 10:  |  | ||||||
| 11: - name: external-secrets |  | ||||||
| 12:   chart: incubator/raw |  | ||||||
| 13:   namespace: default |  | ||||||
| 14:   labels: |  | ||||||
| 15:     app: test |  | ||||||
| 16:   needs: |  | ||||||
| 17:   - kube-system/kubernetes-external-secrets |  | ||||||
| 18:  |  | ||||||
| 19: - name: my-release |  | ||||||
| 20:   chart: incubator/raw |  | ||||||
| 21:   namespace: default |  | ||||||
| 22:   labels: |  | ||||||
| 23:     app: test |  | ||||||
| 24:   needs: |  | ||||||
| 25:   - default/external-secrets |  | ||||||
| 26:  |  | ||||||
| 27:  |  | ||||||
| 28: # Disabled releases are treated as missing |  | ||||||
| 29: - name: disabled |  | ||||||
| 30:   chart: incubator/raw |  | ||||||
| 31:   namespace: kube-system |  | ||||||
| 32:   installed: false |  | ||||||
| 33:  |  | ||||||
| 34: - name: test2 |  | ||||||
| 35:   chart: incubator/raw |  | ||||||
| 36:   needs: |  | ||||||
| 37:   - kube-system/disabled |  | ||||||
| 38:  |  | ||||||
| 39: - name: test3 |  | ||||||
| 40:   chart: incubator/raw |  | ||||||
| 41:   needs: |  | ||||||
| 42:   - test2 |  | ||||||
| 43:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile_1.yaml.part.1": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile_1.yaml.part.1": |  | ||||||
|  0: releases: |  | ||||||
|  1: - name: logging |  | ||||||
|  2:   chart: incubator/raw |  | ||||||
|  3:   namespace: kube-system |  | ||||||
|  4:  |  | ||||||
|  5: - name: kubernetes-external-secrets |  | ||||||
|  6:   chart: incubator/raw |  | ||||||
|  7:   namespace: kube-system |  | ||||||
|  8:   needs: |  | ||||||
|  9:   - kube-system/logging |  | ||||||
| 10:  |  | ||||||
| 11: - name: external-secrets |  | ||||||
| 12:   chart: incubator/raw |  | ||||||
| 13:   namespace: default |  | ||||||
| 14:   labels: |  | ||||||
| 15:     app: test |  | ||||||
| 16:   needs: |  | ||||||
| 17:   - kube-system/kubernetes-external-secrets |  | ||||||
| 18:  |  | ||||||
| 19: - name: my-release |  | ||||||
| 20:   chart: incubator/raw |  | ||||||
| 21:   namespace: default |  | ||||||
| 22:   labels: |  | ||||||
| 23:     app: test |  | ||||||
| 24:   needs: |  | ||||||
| 25:   - default/external-secrets |  | ||||||
| 26:  |  | ||||||
| 27:  |  | ||||||
| 28: # Disabled releases are treated as missing |  | ||||||
| 29: - name: disabled |  | ||||||
| 30:   chart: incubator/raw |  | ||||||
| 31:   namespace: kube-system |  | ||||||
| 32:   installed: false |  | ||||||
| 33:  |  | ||||||
| 34: - name: test2 |  | ||||||
| 35:   chart: incubator/raw |  | ||||||
| 36:   needs: |  | ||||||
| 37:   - kube-system/disabled |  | ||||||
| 38:  |  | ||||||
| 39: - name: test3 |  | ||||||
| 40:   chart: incubator/raw |  | ||||||
| 41:   needs: |  | ||||||
| 42:   - test2 |  | ||||||
| 43:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| changing working directory back to "/path/to" | changing working directory back to "/path/to" | ||||||
| processing file "helmfile_2.yaml" in directory "/path/to/helmfile.d" | processing file "helmfile_2.yaml" in directory "/path/to/helmfile.d" | ||||||
| changing working directory to "/path/to/helmfile.d" | changing working directory to "/path/to/helmfile.d" | ||||||
| first-pass rendering starting for "helmfile_2.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile_2.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: environments: |  | ||||||
|  2:   test: {} |  | ||||||
|  3:   shared: {} |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile_2.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile_2.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: environments: |  | ||||||
|  2:   test: {} |  | ||||||
|  3:   shared: {} |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| first-pass rendering starting for "helmfile_2.yaml.part.1": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile_2.yaml.part.1": |  | ||||||
|  0: repositories: |  | ||||||
|  1: - name: bitnami |  | ||||||
|  2:   url: https://charts.bitnami.com/bitnami |  | ||||||
|  3:  |  | ||||||
|  4: releases: |  | ||||||
|  5: - name: cache |  | ||||||
|  6:   namespace: my-app |  | ||||||
|  7:   chart: bitnami/redis |  | ||||||
|  8:   version: 17.0.7 |  | ||||||
|  9:   labels: |  | ||||||
| 10:     app: test |  | ||||||
| 11:  |  | ||||||
| 12: - name: database |  | ||||||
| 13:   namespace: my-app |  | ||||||
| 14:   chart: bitnami/postgres |  | ||||||
| 15:   version: 11.6.22 |  | ||||||
| 16:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile_2.yaml.part.1": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile_2.yaml.part.1": |  | ||||||
|  0: repositories: |  | ||||||
|  1: - name: bitnami |  | ||||||
|  2:   url: https://charts.bitnami.com/bitnami |  | ||||||
|  3:  |  | ||||||
|  4: releases: |  | ||||||
|  5: - name: cache |  | ||||||
|  6:   namespace: my-app |  | ||||||
|  7:   chart: bitnami/redis |  | ||||||
|  8:   version: 17.0.7 |  | ||||||
|  9:   labels: |  | ||||||
| 10:     app: test |  | ||||||
| 11:  |  | ||||||
| 12: - name: database |  | ||||||
| 13:   namespace: my-app |  | ||||||
| 14:   chart: bitnami/postgres |  | ||||||
| 15:   version: 11.6.22 |  | ||||||
| 16:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| changing working directory back to "/path/to" | changing working directory back to "/path/to" | ||||||
| processing file "helmfile_3.yaml" in directory "/path/to/helmfile.d" | processing file "helmfile_3.yaml" in directory "/path/to/helmfile.d" | ||||||
| changing working directory to "/path/to/helmfile.d" | changing working directory to "/path/to/helmfile.d" | ||||||
| first-pass rendering starting for "helmfile_3.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile_3.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: global |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile_3.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile_3.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: global |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| changing working directory back to "/path/to" | changing working directory back to "/path/to" | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 0 release(s) matching app=test_non_existent found in helmfile.yaml | 0 release(s) matching app=test_non_existent found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 2 release(s) matching app=test found in helmfile.yaml | 2 release(s) matching app=test found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 2 release(s) matching app=test found in helmfile.yaml | 2 release(s) matching app=test found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=test2 found in helmfile.yaml | 1 release(s) matching name=test2 found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=test3 found in helmfile.yaml | 1 release(s) matching name=test3 found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=test2 found in helmfile.yaml | 1 release(s) matching name=test2 found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=test3 found in helmfile.yaml | 1 release(s) matching name=test3 found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 2 release(s) matching app=test found in helmfile.yaml | 2 release(s) matching app=test found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=test3 found in helmfile.yaml | 1 release(s) matching name=test3 found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 2 release(s) matching app=test found in helmfile.yaml | 2 release(s) matching app=test found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 1 release(s) matching name=logging found in helmfile.yaml | 1 release(s) matching name=logging found in helmfile.yaml | ||||||
|  |  | ||||||
|  | @ -1,106 +1,5 @@ | ||||||
| processing file "helmfile.yaml" in directory "." | processing file "helmfile.yaml" in directory "." | ||||||
| changing working directory to "/path/to" | changing working directory to "/path/to" | ||||||
| first-pass rendering starting for "helmfile.yaml.part.0": inherited=&{default  map[] map[]}, overrode=<nil> |  | ||||||
| first-pass uses: &{default  map[] map[]} |  | ||||||
| first-pass rendering output of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| first-pass produced: &{default  map[] map[]} |  | ||||||
| first-pass rendering result of "helmfile.yaml.part.0": {default  map[] map[]} |  | ||||||
| vals: |  | ||||||
| map[] |  | ||||||
| defaultVals:[] |  | ||||||
| second-pass rendering result of "helmfile.yaml.part.0": |  | ||||||
|  0:  |  | ||||||
|  1: releases: |  | ||||||
|  2: - name: logging |  | ||||||
|  3:   chart: incubator/raw |  | ||||||
|  4:   namespace: kube-system |  | ||||||
|  5:  |  | ||||||
|  6: - name: kubernetes-external-secrets |  | ||||||
|  7:   chart: incubator/raw |  | ||||||
|  8:   namespace: kube-system |  | ||||||
|  9:   needs: |  | ||||||
| 10:   - kube-system/logging |  | ||||||
| 11:  |  | ||||||
| 12: - name: external-secrets |  | ||||||
| 13:   chart: incubator/raw |  | ||||||
| 14:   namespace: default |  | ||||||
| 15:   labels: |  | ||||||
| 16:     app: test |  | ||||||
| 17:   needs: |  | ||||||
| 18:   - kube-system/kubernetes-external-secrets |  | ||||||
| 19:  |  | ||||||
| 20: - name: my-release |  | ||||||
| 21:   chart: incubator/raw |  | ||||||
| 22:   namespace: default |  | ||||||
| 23:   labels: |  | ||||||
| 24:     app: test |  | ||||||
| 25:   needs: |  | ||||||
| 26:   - default/external-secrets |  | ||||||
| 27:  |  | ||||||
| 28:  |  | ||||||
| 29: # Disabled releases are treated as missing |  | ||||||
| 30: - name: disabled |  | ||||||
| 31:   chart: incubator/raw |  | ||||||
| 32:   namespace: kube-system |  | ||||||
| 33:   installed: false |  | ||||||
| 34:  |  | ||||||
| 35: - name: test2 |  | ||||||
| 36:   chart: incubator/raw |  | ||||||
| 37:   needs: |  | ||||||
| 38:   - kube-system/disabled |  | ||||||
| 39:  |  | ||||||
| 40: - name: test3 |  | ||||||
| 41:   chart: incubator/raw |  | ||||||
| 42:   needs: |  | ||||||
| 43:   - test2 |  | ||||||
| 44:  |  | ||||||
| 
 |  | ||||||
| merged environment: &{default  map[] map[]} | merged environment: &{default  map[] map[]} | ||||||
| WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | WARNING: release test2 needs disabled, but disabled is not installed due to installed: false. Either mark disabled as installed or remove disabled from test2's needs | ||||||
| 2 release(s) matching app=test found in helmfile.yaml | 2 release(s) matching app=test found in helmfile.yaml | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue