Skip to content

Commit c4eb860

Browse files
authored
refactor: include multitenancy profile in platform profile (#295)
1 parent 6e9f9fb commit c4eb860

File tree

12 files changed

+2
-22
lines changed

12 files changed

+2
-22
lines changed

e2e-tests/config/expected/clusters/dev-coder-minimal.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-app-orch.yaml
1211
- orch-configs/profiles/enable-cluster-orch.yaml
1312
- orch-configs/profiles/enable-edgeinfra.yaml

e2e-tests/config/expected/clusters/dev-coder.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-kyverno.yaml
1312
- orch-configs/profiles/enable-app-orch.yaml

installer/cluster.tpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: true
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-kyverno.yaml
1312
- orch-configs/profiles/enable-app-orch.yaml

orch-configs/clusters/bkc.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ root:
99
useLocalValues: true
1010
clusterValues:
1111
- orch-configs/profiles/enable-platform.yaml
12-
- orch-configs/profiles/enable-multitenancy.yaml
1312
- orch-configs/profiles/enable-o11y.yaml
1413
- orch-configs/profiles/enable-kyverno.yaml
1514
- orch-configs/profiles/enable-app-orch.yaml

orch-configs/clusters/dev-minimal.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-app-orch.yaml
1211
- orch-configs/profiles/enable-cluster-orch.yaml
1312
- orch-configs/profiles/enable-edgeinfra.yaml

orch-configs/clusters/dev.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-audit.yaml
1312
- orch-configs/profiles/enable-kyverno.yaml

orch-configs/clusters/onprem-1k.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-kyverno.yaml
1312
- orch-configs/profiles/enable-app-orch.yaml

orch-configs/clusters/onprem-explicit-proxy.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-kyverno.yaml
1312
- orch-configs/profiles/enable-app-orch.yaml

orch-configs/clusters/onprem.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
- orch-configs/profiles/enable-o11y.yaml
1211
- orch-configs/profiles/enable-kyverno.yaml
1312
- orch-configs/profiles/enable-app-orch.yaml

orch-configs/profiles/enable-multitenancy.yaml

Lines changed: 0 additions & 11 deletions
This file was deleted.

orch-configs/profiles/enable-platform.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ argo:
2525
istiod: true
2626
kiali: true
2727
metadata-broker: true
28+
multitenant_gateway: true
2829
nginx-ingress-pxe-boots: true
2930
platform-autocert: true
3031
platform-keycloak: true

orch-configs/templates/cluster.tpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ root:
77
useLocalValues: false
88
clusterValues:
99
- orch-configs/profiles/enable-platform.yaml
10-
- orch-configs/profiles/enable-multitenancy.yaml
1110
{{- if .Values.enableObservability }}
1211
- orch-configs/profiles/enable-o11y.yaml
1312
{{- end }}
@@ -129,7 +128,7 @@ orchestratorDeployment:
129128
enableMailpit: {{ .Values.enableMailpit }}
130129
argoServiceType: {{ .Values.argoServiceType }}
131130
dockerCache: "{{ .Values.dockerCache }}"
132-
{{- if and .Values.dockerCacheCert }}
131+
{{- if and .Values.dockerCacheCert }}
133132
dockerCacheCert: |
134133
{{ .Values.dockerCacheCert | indent 4 }}
135134
{{- end }}

0 commit comments

Comments
 (0)