-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes examples/dt/bgp/common/control-plane/nncp/ Configuration 1 (kernel-routing-nbdb-driver): - BGP - Ceph and Networker nodes - DVR - expose-tenant-networks disabled - default sync-interval - kernel routing - NBDB driver - FRR: interface-level BGP peers - FRR: different ASN per rack - Tempest (neutron+octavia) + Tobiko (scenario+sanity+faults) Configuration 2 (ovn-routing-nbdb-driver): - BGP - Networker nodes - DVR - expose-tenant-networks enabled - sync-interval configured with high value - OVN routing - NBDB driver - FRR: IP-level BGP peers - FRR: different ASN per rack - Tempest (neutron+octavia) + Tobiko (scenario+sanity+faults) Configuration 3 (ovn-routing-nbdb-driver-nondvr): - BGP - Networker nodes - DVR disabled - expose-tenant-networks enabled - default sync-interval - OVN routing - NBDB driver - FRR: IP-level BGP peers - FRR: different ASN per rack - Tempest (neutron+octavia) + Tobiko (scenario+sanity+faults) Configuration 4 (kernel-routing-sbdb-driver-ipv6): - BGP - Networker nodes - IPv6 single-stack controlplane - DVR - expose-tenant-networks disabled - default sync-interval - kernel routing - SBDB driver - FRR: IP-level BGP peers - FRR: different ASN per rack - Tempest (neutron+octavia) + Tobiko (scenario+sanity+faults)
- Loading branch information
1 parent
107dd5d
commit 7acbc57
Showing
26 changed files
with
2,926 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
transformers: | ||
# Set namespace to OpenStack on all namespaced objects without a namespace | ||
- |- | ||
apiVersion: builtin | ||
kind: NamespaceTransformer | ||
metadata: | ||
name: _ignored_ | ||
namespace: openstack | ||
setRoleBindingSubjects: none | ||
unsetOnly: true | ||
fieldSpecs: | ||
- path: metadata/name | ||
kind: Namespace | ||
create: true | ||
components: | ||
- ../../examples/dt/bgp/config/lib/networking | ||
# TODO!!!! - ../../examples/dt/bgp/config/lib/control-plane | ||
|
||
# Add StorageMgmt network template, as it is needed for CephHCI | ||
# patches: | ||
# - target: | ||
# version: v1beta1 | ||
# kind: NetConfig | ||
# name: netconfig | ||
# patch: |- | ||
# - op: add | ||
# path: /spec/networks/- | ||
# value: | ||
# dnsDomain: _replaced_ | ||
# name: StorageMgmt | ||
# subnets: | ||
# - _replaced_ | ||
# mtu: 1500 | ||
|
||
# Add StorageMgmt network replacements | ||
# replacements: | ||
# # NetConfig dnsDomain specific to this VA | ||
# - source: | ||
# kind: ConfigMap | ||
# name: network-values | ||
# fieldPath: data.storagemgmt.dnsDomain | ||
# targets: | ||
# - select: | ||
# kind: NetConfig | ||
# fieldPaths: | ||
# - spec.networks.[name=StorageMgmt].dnsDomain | ||
# # NetConfig MTU specific to this VA | ||
# - source: | ||
# kind: ConfigMap | ||
# name: network-values | ||
# fieldPath: data.storagemgmt.mtu | ||
# targets: | ||
# - select: | ||
# kind: NetConfig | ||
# fieldPaths: | ||
# - spec.networks.[name=StorageMgmt].mtu | ||
# # NetConfig subnets specific to this VA | ||
# - source: | ||
# kind: ConfigMap | ||
# name: network-values | ||
# fieldPath: data.storagemgmt.subnets | ||
# targets: | ||
# - select: | ||
# kind: NetConfig | ||
# fieldPaths: | ||
# - spec.networks.[name=StorageMgmt].subnets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: builtin | ||
kind: NamespaceTransformer | ||
metadata: | ||
name: _ignored_ | ||
namespace: openstack | ||
setRoleBindingSubjects: none | ||
unsetOnly: true | ||
fieldSpecs: | ||
- path: metadata/name | ||
kind: Namespace | ||
create: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
components: | ||
- ../../../../../dt/bgp/ | ||
|
||
resources: | ||
- nncp/values.yaml | ||
|
||
24 changes: 24 additions & 0 deletions
24
examples/dt/bgp/config/control-plane/nncp/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
transformers: | ||
# Set namespace to OpenStack on all namespaced objects without a namespace | ||
- |- | ||
apiVersion: builtin | ||
kind: NamespaceTransformer | ||
metadata: | ||
name: _ignored_ | ||
namespace: openstack | ||
setRoleBindingSubjects: none | ||
unsetOnly: true | ||
fieldSpecs: | ||
- path: metadata/name | ||
kind: Namespace | ||
create: true | ||
components: | ||
- ../../lib/nncp | ||
|
||
resources: | ||
- values.yaml | ||
|
Oops, something went wrong.