1e1af139 by Adam Heath

Adjust environment loading to use external files for redis and registry.

1 parent a7fd28ee
1 namespace: redis
2 namePrefix: "test-"
3 redisServer:
4 jsonPatches: []
5 strategicMergePatches: []
6 images:
7 redis: "redis:6.2.6"
8
1 environments: 1 bases:
2 default: 2 - ../common/environments.yaml
3 values:
4 - namespace: redis
5 namePrefix: "test-"
6 redisServer:
7 jsonPatches: []
8 strategicMergePatches: []
9 images:
10 redis: "redis:6.2.6"
11 3
12 --- 4 ---
13 releases: 5 releases:
......
1 namespace: registry
2 namePrefix: "test-"
3 restoreFromEmpty:
4 enabled: true
5 registry:
6 jsonPatches: []
7 strategicMergePatches: []
8 service:
9 registry:
10 nodePort: 0
11 clusterIP: 0
12 type: NodePort
13 certificate:
14 hostNames:
15 - registry.local
16 issuerRef: ca-issuer
17 istioVirtualService:
18 enabled: true
19 jsonPatches: []
20 strategicMergePatches: []
21 gateways:
22 - default/cluster-local-gateway
23 vhosts:
24 - registry.local
25 images:
26 debian: "debian:bullseye-20211220"
27 registry: "registry:2"
28 redis: "redis:6.2.6"
1 environments: 1 bases:
2 default: 2 - ../common/environments.yaml
3 values: 3
4 - namespace: registry
5 namePrefix: "test-"
6 restoreFromEmpty:
7 enabled: true
8 registry:
9 jsonPatches: []
10 strategicMergePatches: []
11 service:
12 registry:
13 nodePort: 0
14 clusterIP: 0
15 type: NodePort
16 certificate:
17 hostNames:
18 - registry.local
19 issuerRef: ca-issuer
20 istioVirtualService:
21 enabled: true
22 jsonPatches: []
23 strategicMergePatches: []
24 gateways:
25 - default/cluster-local-gateway
26 vhosts:
27 - registry.local
28 images:
29 debian: "debian:bullseye-20211220"
30 registry: "registry:2"
31 redis: "redis:6.2.6"
32 --- 4 ---
33 helmfiles: 5 helmfiles:
34 - path: ../redis/helmfile.yaml 6 - path: ../redis/helmfile.yaml
......