Skip to content

Commit 69878ed

Browse files
committed
Sharding of snatglobalinfo
1 parent bf44a1e commit 69878ed

File tree

119 files changed

+2718
-229
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+2718
-229
lines changed

provision/acc_provision/acc_provision.py

-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ def config_default():
198198
"snat_operator": {
199199
"name": "snat-operator",
200200
"watch_namespace": "",
201-
"globalinfo_name": "snatglobalinfo",
202201
"rdconfig_name": "routingdomain-config",
203202
"port_range": {
204203
"start": 5000,

provision/acc_provision/templates/aci-containers.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,11 @@ spec:
337337
type: object
338338
type: array
339339
type: object
340+
nodeName:
341+
type: string
340342
required:
341343
- globalInfos
344+
- nodeName
342345
type: object
343346
status:
344347
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo
@@ -2510,8 +2513,6 @@ spec:
25102513
{% endif %}
25112514
- name: ACI_SNAT_NAMESPACE
25122515
value: "{{ config.kube_config.snat_operator.snat_namespace }}"
2513-
- name: ACI_SNAGLOBALINFO_NAME
2514-
value: "{{ config.kube_config.snat_operator.globalinfo_name }}"
25152516
- name: ACI_RDCONFIG_NAME
25162517
value: "{{ config.kube_config.snat_operator.rdconfig_name }}"
25172518
- name: SYSTEM_NAMESPACE

provision/testdata/base_case.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/base_case_ipv6.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/base_case_operator_cr.kube.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/base_case_operator_mode.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/base_case_snat.inp.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ kube_config:
4242
use_ds_rolling_update: true
4343
snat_operator:
4444
name: test_snat-operator
45-
globalinfo_name: test_snatglobalinfo
4645
port_range:
4746
start: 6000
4847
end: 62000

provision/testdata/base_case_snat.kube.yaml

+4-4
Large diffs are not rendered by default.

provision/testdata/base_case_tar/cluster-network-07-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/base_case_tar/cluster-network-20-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/base_case_tar/cluster-network-33-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/base_case_upgrade.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/cloud_tar/cluster-network-09-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/cloud_tar/cluster-network-22-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/cloud_tar/cluster-network-36-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ spec:
4444
value: ''
4545
- name: ACI_SNAT_NAMESPACE
4646
value: aci-containers-system
47-
- name: ACI_SNAGLOBALINFO_NAME
48-
value: snatglobalinfo
4947
- name: ACI_RDCONFIG_NAME
5048
value: routingdomain-config
5149
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_aks.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_cloud.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_dockerucp.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_eks.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_localhost.kube.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,11 @@ spec:
298298
type: object
299299
type: array
300300
type: object
301+
nodeName:
302+
type: string
301303
required:
302304
- globalInfos
305+
- nodeName
303306
type: object
304307
status:
305308
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo
@@ -2047,8 +2050,6 @@ spec:
20472050
env:
20482051
- name: ACI_SNAT_NAMESPACE
20492052
value: "kube-system"
2050-
- name: ACI_SNAGLOBALINFO_NAME
2051-
value: "snatglobalinfo"
20522053
- name: ACI_RDCONFIG_NAME
20532054
value: "routingdomain-config"
20542055
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_310.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_311.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_410_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_410_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_410_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_410_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_43.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_43_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_43_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_43_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_44_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_44_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_44_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_44_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_44_openstack.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_44_openstack_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_44_openstack_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_44_openstack_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_45_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_45_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_45_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_45_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_45_openstack.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_45_openstack_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_45_openstack_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_45_openstack_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_46_baremetal.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_baremetal_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_46_baremetal_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_baremetal_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_46_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_46_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_46_openstack.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_openstack_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_46_openstack_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_46_openstack_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_47_baremetal.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_baremetal_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_47_baremetal_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_baremetal_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_47_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_47_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_47_openstack.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_openstack_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_47_openstack_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_47_openstack_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_48_baremetal.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_48_baremetal_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_48_baremetal_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_48_baremetal_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

provision/testdata/flavor_openshift_48_esx.kube.yaml

+4-3
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_48_esx_tar/cluster-network-08-CustomResourceDefinition-snatglobalinfos.aci.snat.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ spec:
5858
type: object
5959
type: array
6060
type: object
61+
nodeName:
62+
type: string
6163
required:
6264
- globalInfos
65+
- nodeName
6366
type: object
6467
status:
6568
description: SnatGlobalInfoStatus defines the observed state of SnatGlobalInfo

provision/testdata/flavor_openshift_48_esx_tar/cluster-network-21-ConfigMap-aci-operator-config.yaml

+1-1
Large diffs are not rendered by default.

provision/testdata/flavor_openshift_48_esx_tar/cluster-network-34-Deployment-aci-containers-controller.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ spec:
3131
value: ''
3232
- name: ACI_SNAT_NAMESPACE
3333
value: aci-containers-system
34-
- name: ACI_SNAGLOBALINFO_NAME
35-
value: snatglobalinfo
3634
- name: ACI_RDCONFIG_NAME
3735
value: routingdomain-config
3836
- name: SYSTEM_NAMESPACE

0 commit comments

Comments
 (0)