From f38f6ad1f34132c2229a35618da624e8d6007c04 Mon Sep 17 00:00:00 2001 From: John Fulton Date: Tue, 27 Aug 2024 18:21:35 -0400 Subject: [PATCH] Add NFS network for Manila to uni04delta Manila Tempest tests need to connect to the share for Ganesha via a special (openstack) network [1]. This patch adds the NFS storage network with VLAN 24 and range 172.21.0.0/24 in uni04delta. The NFS network is connected to Ceph and Compute EDPM nodes. A NNCP, NAD, L2Advertisement and IPAddressPool are defined for the NFS network so that a pod in k8s can connect to it; such as the tempest pod which will perform the storage tests. In order to make these changes, uni04delta now keeps its own copy of the nncp and networking directories since they differ (by the new network) from the generic ones in the lib directory. TODO: update Manila CRDs to use this network. [1] https://opendev.org/openstack/manila-tempest-plugin/src/branch/master/manila_tempest_tests/config.py#L99 Jira: https://issues.redhat.com/browse/OSPRH-7417 Depends-On: https://github.com/openstack-k8s-operators/ci-framework/pull/2273 Signed-off-by: John Fulton --- dt/uni04delta/kustomization.yaml | 6 +- dt/uni04delta/networking/kustomization.yaml | 8 + .../networking/metallb/kustomization.yaml | 181 ++++++ .../metallb/metallb_l2advertisement.yaml | 59 ++ .../metallb/ocp_ip_pool_template.yaml | 7 + .../networking/metallb/ocp_ip_pools.yaml | 40 ++ .../networking/nad/kustomization.yaml | 75 +++ .../networking/nad/ocp_network_template.yaml | 8 + .../nad/ocp_networks_netattach.yaml | 48 ++ .../networking/netconfig/kustomization.yaml | 175 ++++++ .../networking/netconfig/netconfig.yaml | 38 ++ dt/uni04delta/nncp/kustomization.yaml | 522 ++++++++++++++++++ dt/uni04delta/nncp/ocp_node_template.yaml | 108 ++++ dt/uni04delta/nncp/ocp_nodes_nncp.yaml | 21 + .../control-plane/nncp/kustomization.yaml | 2 +- .../uni04delta/control-plane/nncp/values.yaml | 40 +- .../edpm-pre-ceph/nodeset/values.yaml | 8 + examples/dt/uni04delta/values.yaml | 6 + 18 files changed, 1345 insertions(+), 7 deletions(-) create mode 100644 dt/uni04delta/networking/kustomization.yaml create mode 100644 dt/uni04delta/networking/metallb/kustomization.yaml create mode 100644 dt/uni04delta/networking/metallb/metallb_l2advertisement.yaml create mode 100644 dt/uni04delta/networking/metallb/ocp_ip_pool_template.yaml create mode 100644 dt/uni04delta/networking/metallb/ocp_ip_pools.yaml create mode 100644 dt/uni04delta/networking/nad/kustomization.yaml create mode 100644 dt/uni04delta/networking/nad/ocp_network_template.yaml create mode 100644 dt/uni04delta/networking/nad/ocp_networks_netattach.yaml create mode 100644 dt/uni04delta/networking/netconfig/kustomization.yaml create mode 100644 dt/uni04delta/networking/netconfig/netconfig.yaml create mode 100644 dt/uni04delta/nncp/kustomization.yaml create mode 100644 dt/uni04delta/nncp/ocp_node_template.yaml create mode 100644 dt/uni04delta/nncp/ocp_nodes_nncp.yaml diff --git a/dt/uni04delta/kustomization.yaml b/dt/uni04delta/kustomization.yaml index 308a0533e..dfcbfd22c 100644 --- a/dt/uni04delta/kustomization.yaml +++ b/dt/uni04delta/kustomization.yaml @@ -17,9 +17,9 @@ transformers: create: true components: - - ../../lib/networking/metallb - - ../../lib/networking/netconfig - - ../../lib/networking/nad + - networking/metallb + - networking/netconfig + - networking/nad - ../../lib/control-plane patches: diff --git a/dt/uni04delta/networking/kustomization.yaml b/dt/uni04delta/networking/kustomization.yaml new file mode 100644 index 000000000..c11ba267d --- /dev/null +++ b/dt/uni04delta/networking/kustomization.yaml @@ -0,0 +1,8 @@ +--- +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +components: + - metallb + - nad + - netconfig diff --git a/dt/uni04delta/networking/metallb/kustomization.yaml b/dt/uni04delta/networking/metallb/kustomization.yaml new file mode 100644 index 000000000..2ff079108 --- /dev/null +++ b/dt/uni04delta/networking/metallb/kustomization.yaml @@ -0,0 +1,181 @@ +--- +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +resources: + - metallb_l2advertisement.yaml + - ocp_ip_pools.yaml + +patches: + - target: + kind: IPAddressPool + labelSelector: "osp/lb-addresses-type=standard" + path: ocp_ip_pool_template.yaml + +replacements: + # IPAddressPool addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.lb_addresses + targets: + - select: + kind: IPAddressPool + name: ctlplane + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.lb_addresses + targets: + - select: + kind: IPAddressPool + name: internalapi + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.lb_addresses + targets: + - select: + kind: IPAddressPool + name: storage + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.lb_addresses + targets: + - select: + kind: IPAddressPool + name: tenant + fieldPaths: + - spec.addresses + + # Loadbalancer address pools + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: ctlplane + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: internalapi + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: tenant + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: ctlplane + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: storage + fieldPaths: + - spec.addresses + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.lb_addresses + targets: + - select: + group: metallb.io + kind: IPAddressPool + name: nfs + fieldPaths: + - spec.addresses + + # Loadbalancer interfaces + - source: + kind: ConfigMap + name: network-values + fieldPath: data.bridgeName + targets: + - select: + group: metallb.io + kind: L2Advertisement + name: ctlplane + fieldPaths: + - spec.interfaces.0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.iface + targets: + - select: + group: metallb.io + kind: L2Advertisement + name: tenant + fieldPaths: + - spec.interfaces.0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.iface + targets: + - select: + group: metallb.io + kind: L2Advertisement + name: storage + fieldPaths: + - spec.interfaces.0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.iface + targets: + - select: + group: metallb.io + kind: L2Advertisement + name: internalapi + fieldPaths: + - spec.interfaces.0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.iface + targets: + - select: + group: metallb.io + kind: L2Advertisement + name: nfs + fieldPaths: + - spec.interfaces.0 diff --git a/dt/uni04delta/networking/metallb/metallb_l2advertisement.yaml b/dt/uni04delta/networking/metallb/metallb_l2advertisement.yaml new file mode 100644 index 000000000..da5d8e01f --- /dev/null +++ b/dt/uni04delta/networking/metallb/metallb_l2advertisement.yaml @@ -0,0 +1,59 @@ +# +# Additional advertisements can be added here if needed for other networks +# + +--- +apiVersion: metallb.io/v1beta1 +kind: L2Advertisement +metadata: + name: ctlplane + namespace: metallb-system +spec: + ipAddressPools: + - ctlplane + interfaces: + - _replaced_ +--- +apiVersion: metallb.io/v1beta1 +kind: L2Advertisement +metadata: + name: internalapi + namespace: metallb-system +spec: + ipAddressPools: + - internalapi + interfaces: + - _replaced_ +--- +apiVersion: metallb.io/v1beta1 +kind: L2Advertisement +metadata: + name: storage + namespace: metallb-system +spec: + ipAddressPools: + - storage + interfaces: + - _replaced_ +--- +apiVersion: metallb.io/v1beta1 +kind: L2Advertisement +metadata: + name: tenant + namespace: metallb-system +spec: + ipAddressPools: + - tenant + interfaces: + - _replaced_ +--- +apiVersion: metallb.io/v1beta1 +kind: L2Advertisement +metadata: + name: nfs + namespace: metallb-system +spec: + ipAddressPools: + - nfs + interfaces: + - _replaced_ diff --git a/dt/uni04delta/networking/metallb/ocp_ip_pool_template.yaml b/dt/uni04delta/networking/metallb/ocp_ip_pool_template.yaml new file mode 100644 index 000000000..e755d9f31 --- /dev/null +++ b/dt/uni04delta/networking/metallb/ocp_ip_pool_template.yaml @@ -0,0 +1,7 @@ +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + name: _ignored_ +spec: + addresses: [] diff --git a/dt/uni04delta/networking/metallb/ocp_ip_pools.yaml b/dt/uni04delta/networking/metallb/ocp_ip_pools.yaml new file mode 100644 index 000000000..b3d5e039c --- /dev/null +++ b/dt/uni04delta/networking/metallb/ocp_ip_pools.yaml @@ -0,0 +1,40 @@ +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + namespace: metallb-system + name: ctlplane + labels: + osp/lb-addresses-type: standard +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + namespace: metallb-system + name: internalapi + labels: + osp/lb-addresses-type: standard +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + namespace: metallb-system + name: storage + labels: + osp/lb-addresses-type: standard +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + namespace: metallb-system + name: tenant + labels: + osp/lb-addresses-type: standard +--- +apiVersion: metallb.io/v1beta1 +kind: IPAddressPool +metadata: + namespace: metallb-system + name: nfs + labels: + osp/lb-addresses-type: standard diff --git a/dt/uni04delta/networking/nad/kustomization.yaml b/dt/uni04delta/networking/nad/kustomization.yaml new file mode 100644 index 000000000..ccaed730c --- /dev/null +++ b/dt/uni04delta/networking/nad/kustomization.yaml @@ -0,0 +1,75 @@ +--- +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +resources: + - ocp_networks_netattach.yaml + +patches: + - target: + kind: NetworkAttachmentDefinition + labelSelector: "osp/net-attach-def-type=standard" + path: ocp_network_template.yaml + +replacements: + # NetworkAttachmentDefinition JSON config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: ctlplane + fieldPaths: + - spec.config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: internalapi + fieldPaths: + - spec.config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: storage + fieldPaths: + - spec.config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: tenant + fieldPaths: + - spec.config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.datacentre.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: datacentre + fieldPaths: + - spec.config + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.net-attach-def + targets: + - select: + kind: NetworkAttachmentDefinition + name: nfs + fieldPaths: + - spec.config diff --git a/dt/uni04delta/networking/nad/ocp_network_template.yaml b/dt/uni04delta/networking/nad/ocp_network_template.yaml new file mode 100644 index 000000000..29f6deaf6 --- /dev/null +++ b/dt/uni04delta/networking/nad/ocp_network_template.yaml @@ -0,0 +1,8 @@ +--- +apiVersion: nmstate.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: _ignored_ +spec: + config: | + _replaced_ diff --git a/dt/uni04delta/networking/nad/ocp_networks_netattach.yaml b/dt/uni04delta/networking/nad/ocp_networks_netattach.yaml new file mode 100644 index 000000000..f06ccaeb8 --- /dev/null +++ b/dt/uni04delta/networking/nad/ocp_networks_netattach.yaml @@ -0,0 +1,48 @@ +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: ctlplane + labels: + osp/net: ctlplane + osp/net-attach-def-type: standard +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: internalapi + labels: + osp/net: internalapi + osp/net-attach-def-type: standard +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: storage + labels: + osp/net: storage + osp/net-attach-def-type: standard +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: tenant + labels: + osp/net: tenant + osp/net-attach-def-type: standard +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: datacentre + labels: + osp/net: datacentre + osp/net-attach-def-type: standard +--- +apiVersion: k8s.cni.cncf.io/v1 +kind: NetworkAttachmentDefinition +metadata: + name: nfs + labels: + osp/net: nfs + osp/net-attach-def-type: standard diff --git a/dt/uni04delta/networking/netconfig/kustomization.yaml b/dt/uni04delta/networking/netconfig/kustomization.yaml new file mode 100644 index 000000000..6d337d7b0 --- /dev/null +++ b/dt/uni04delta/networking/netconfig/kustomization.yaml @@ -0,0 +1,175 @@ +--- +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +resources: + - netconfig.yaml + +replacements: + # NetConfig dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=ctlplane].dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=internalapi].dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.external.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=external].dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=storage].dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=tenant].dnsDomain + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.dnsDomain + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=nfs].dnsDomain + + # NetConfig MTU + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=ctlplane].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=internalapi].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.external.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=external].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=storage].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=tenant].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.mtu + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=nfs].mtu + + # NetConfig subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=ctlplane].subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=internalapi].subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.external.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=external].subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=storage].subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=tenant].subnets + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.subnets + targets: + - select: + kind: NetConfig + fieldPaths: + - spec.networks.[name=nfs].subnets diff --git a/dt/uni04delta/networking/netconfig/netconfig.yaml b/dt/uni04delta/networking/netconfig/netconfig.yaml new file mode 100644 index 000000000..005e15189 --- /dev/null +++ b/dt/uni04delta/networking/netconfig/netconfig.yaml @@ -0,0 +1,38 @@ +--- +apiVersion: network.openstack.org/v1beta1 +kind: NetConfig +metadata: + name: netconfig + namespace: openstack +spec: + networks: + - dnsDomain: _replaced_ + name: ctlplane + subnets: + - _replaced_ + mtu: 1500 + - dnsDomain: _replaced_ + name: internalapi + subnets: + - _replaced_ + mtu: 1500 + - dnsDomain: _replaced_ + name: external + subnets: + - _replaced_ + mtu: 1500 + - dnsDomain: _replaced_ + name: storage + subnets: + - _replaced_ + mtu: 1500 + - dnsDomain: _replaced_ + name: tenant + subnets: + - _replaced_ + mtu: 1500 + - dnsDomain: _replaced_ + name: nfs + subnets: + - _replaced_ + mtu: 1500 diff --git a/dt/uni04delta/nncp/kustomization.yaml b/dt/uni04delta/nncp/kustomization.yaml new file mode 100644 index 000000000..468f30c26 --- /dev/null +++ b/dt/uni04delta/nncp/kustomization.yaml @@ -0,0 +1,522 @@ +--- +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +resources: + - ocp_nodes_nncp.yaml + +patches: + - target: + kind: NodeNetworkConfigurationPolicy + labelSelector: "osp/nncm-config-type=standard" + path: ocp_node_template.yaml + +replacements: + # Common network interfaces and vlans + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.base_iface + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].vlan.base-iface + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.vlan + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].vlan.id + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.mtu + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.base_iface + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].vlan.base-iface + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.vlan + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].vlan.id + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.mtu + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.base_iface + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=storage].vlan.base-iface + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.vlan + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=storage].vlan.id + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.mtu + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=storage].mtu + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.base_iface + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].vlan.base-iface + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.vlan + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].vlan.id + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.mtu + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].mtu + # ctlplane type is ethernet (not vlan) + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.iface + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[type=ethernet].name + - spec.desiredState.interfaces.[type=linux-bridge].bridge.port.0.name + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.mtu + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[type=ethernet].mtu + - spec.desiredState.interfaces.[type=linux-bridge].mtu + + # Static Node IPs: node-0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.internalapi_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.tenant_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.ctlplane_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.storage_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.nfs_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.ip + + # Static Node IPs: node-1 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.internalapi_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.tenant_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.ctlplane_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.storage_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.nfs_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.ip + + # Static Node IPs: node-2 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.internalapi_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.tenant_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.ctlplane_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.storage_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.ip + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.nfs_ip + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.ip + + # prefix-length: node-0 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.prefix-length + + # prefix-length: node-1 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.prefix-length + + # prefix-length: node-2 + - source: + kind: ConfigMap + name: network-values + fieldPath: data.ctlplane.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.internalapi.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=internalapi].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.tenant.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=tenant].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.storage.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=storage].ipv4.address.0.prefix-length + - source: + kind: ConfigMap + name: network-values + fieldPath: data.nfs.prefix-length + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - spec.desiredState.interfaces.[name=nfs].ipv4.address.0.prefix-length + + # Node names + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_0.name + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-0 + fieldPaths: + - metadata.name + - spec.nodeSelector.[kubernetes.io/hostname] + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_1.name + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-1 + fieldPaths: + - metadata.name + - spec.nodeSelector.[kubernetes.io/hostname] + - source: + kind: ConfigMap + name: network-values + fieldPath: data.node_2.name + targets: + - select: + kind: NodeNetworkConfigurationPolicy + name: node-2 + fieldPaths: + - metadata.name + - spec.nodeSelector.[kubernetes.io/hostname] + + # DNS + - source: + kind: ConfigMap + name: network-values + fieldPath: data.dns-resolver.config + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.dns-resolver.config + + # Routes + - source: + kind: ConfigMap + name: network-values + fieldPath: data.routes + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.routes + - source: + kind: ConfigMap + name: network-values + fieldPath: data.bridgeName + targets: + - select: + kind: NodeNetworkConfigurationPolicy + fieldPaths: + - spec.desiredState.interfaces.[type=linux-bridge].name diff --git a/dt/uni04delta/nncp/ocp_node_template.yaml b/dt/uni04delta/nncp/ocp_node_template.yaml new file mode 100644 index 000000000..bdbdc7adb --- /dev/null +++ b/dt/uni04delta/nncp/ocp_node_template.yaml @@ -0,0 +1,108 @@ +--- +apiVersion: nmstate.io/v1 +kind: NodeNetworkConfigurationPolicy +metadata: + name: _ignored_ +spec: + desiredState: + dns-resolver: + config: + search: [] + server: [] + routes: + config: [] + route-rules: + config: [] + interfaces: + - description: internalapi vlan interface + ipv4: + address: + - ip: _replaced_ + prefix-length: _replaced_ + enabled: true + dhcp: false + ipv6: + enabled: false + name: internalapi + state: up + type: vlan + vlan: + base-iface: _replaced_ + id: _replaced_ + mtu: 1500 + - description: storage vlan interface + ipv4: + address: + - ip: _replaced_ + prefix-length: _replaced_ + enabled: true + dhcp: false + ipv6: + enabled: false + name: storage + state: up + type: vlan + vlan: + base-iface: _replaced_ + id: _replaced_ + mtu: 1500 + - description: tenant vlan interface + ipv4: + address: + - ip: _replaced_ + prefix-length: _replaced_ + enabled: true + dhcp: false + ipv6: + enabled: false + name: tenant + state: up + type: vlan + vlan: + base-iface: _replaced_ + id: _replaced_ + mtu: 1500 + - description: nfs vlan interface + ipv4: + address: + - ip: _replaced_ + prefix-length: _replaced_ + enabled: true + dhcp: false + ipv6: + enabled: false + name: nfs + state: up + type: vlan + vlan: + base-iface: _replaced_ + id: _replaced_ + mtu: 1500 + - description: ctlplane interface + name: _replaced_ + state: up + type: ethernet + mtu: 1500 + - description: linux-bridge over ctlplane interface + ipv4: + address: + - ip: _replaced_ + prefix-length: _replaced_ + enabled: true + dhcp: false + ipv6: + enabled: false + name: _replaced_ + state: up + type: linux-bridge + bridge: + options: + stp: + enabled: false + port: + - name: _replaced_ + vlan: {} + mtu: 1500 + nodeSelector: + kubernetes.io/hostname: _replaced_ + node-role.kubernetes.io/worker: "" diff --git a/dt/uni04delta/nncp/ocp_nodes_nncp.yaml b/dt/uni04delta/nncp/ocp_nodes_nncp.yaml new file mode 100644 index 000000000..1fd174705 --- /dev/null +++ b/dt/uni04delta/nncp/ocp_nodes_nncp.yaml @@ -0,0 +1,21 @@ +--- +apiVersion: nmstate.io/v1 +kind: NodeNetworkConfigurationPolicy +metadata: + name: node-0 + labels: + osp/nncm-config-type: standard +--- +apiVersion: nmstate.io/v1 +kind: NodeNetworkConfigurationPolicy +metadata: + name: node-1 + labels: + osp/nncm-config-type: standard +--- +apiVersion: nmstate.io/v1 +kind: NodeNetworkConfigurationPolicy +metadata: + name: node-2 + labels: + osp/nncm-config-type: standard diff --git a/examples/dt/uni04delta/control-plane/nncp/kustomization.yaml b/examples/dt/uni04delta/control-plane/nncp/kustomization.yaml index 94653e805..8f6b8d822 100644 --- a/examples/dt/uni04delta/control-plane/nncp/kustomization.yaml +++ b/examples/dt/uni04delta/control-plane/nncp/kustomization.yaml @@ -17,7 +17,7 @@ transformers: create: true components: - - ../../../../../lib/nncp + - ../../../../../dt/uni04delta/nncp resources: - values.yaml diff --git a/examples/dt/uni04delta/control-plane/nncp/values.yaml b/examples/dt/uni04delta/control-plane/nncp/values.yaml index 44e1683d9..e6b2085b3 100644 --- a/examples/dt/uni04delta/control-plane/nncp/values.yaml +++ b/examples/dt/uni04delta/control-plane/nncp/values.yaml @@ -11,23 +11,26 @@ data: "quay.io/openstack-k8s-operators/openstack-operator-index:latest" node_0: - name: master-0 + name: node-0 internalapi_ip: 172.17.0.5 tenant_ip: 172.19.0.5 ctlplane_ip: 192.168.122.10 storage_ip: 172.18.0.5 + nfs_ip: 172.21.0.5 node_1: - name: master-1 + name: node-1 internalapi_ip: 172.17.0.6 tenant_ip: 172.19.0.6 ctlplane_ip: 192.168.122.11 storage_ip: 172.18.0.6 + nfs_ip: 172.21.0.6 node_2: - name: master-2 + name: node-2 internalapi_ip: 172.17.0.7 tenant_ip: 172.19.0.7 ctlplane_ip: 192.168.122.12 storage_ip: 172.18.0.7 + nfs_ip: 172.21.0.7 ctlplane: dnsDomain: ctlplane.example.com @@ -127,6 +130,37 @@ data: } } + nfs: + dnsDomain: nfs.example.com + subnets: + - allocationRanges: + - end: 172.21.0.250 + start: 172.21.0.100 + cidr: 172.21.0.0/24 + gateway: 172.21.0.1 + name: subnet1 + vlan: 24 + mtu: 1500 + prefix-length: 24 + iface: nfs + vlan: 24 + base_iface: enp6s0 + lb_addresses: + - 172.21.0.80-172.21.0.90 + net-attach-def: | + { + "cniVersion": "0.3.1", + "name": "nfs", + "type": "macvlan", + "master": "nfs", + "ipam": { + "type": "whereabouts", + "range": "172.21.0.0/24", + "range_start": "172.21.0.100", + "range_end": "172.21.0.250" + } + } + storagemgmt: dnsDomain: storagemgmt.example.com subnets: diff --git a/examples/dt/uni04delta/edpm-pre-ceph/nodeset/values.yaml b/examples/dt/uni04delta/edpm-pre-ceph/nodeset/values.yaml index 779a4a96e..2f44dc26b 100644 --- a/examples/dt/uni04delta/edpm-pre-ceph/nodeset/values.yaml +++ b/examples/dt/uni04delta/edpm-pre-ceph/nodeset/values.yaml @@ -96,6 +96,8 @@ data: subnetName: subnet1 - name: storagemgmt subnetName: subnet1 + - name: nfs + subnetName: subnet1 nodes: edpm-ceph-0: @@ -111,6 +113,8 @@ data: subnetName: subnet1 - name: storageMgmt subnetName: subnet1 + - name: nfs + subnetName: subnet1 edpm-ceph-1: ansible: ansibleHost: 192.168.122.106 @@ -124,6 +128,8 @@ data: subnetName: subnet1 - name: storageMgmt subnetName: subnet1 + - name: nfs + subnetName: subnet1 edpm-ceph-2: ansible: ansibleHost: 192.168.122.107 @@ -137,6 +143,8 @@ data: subnetName: subnet1 - name: storageMgmt subnetName: subnet1 + - name: nfs + subnetName: subnet1 services: - bootstrap diff --git a/examples/dt/uni04delta/values.yaml b/examples/dt/uni04delta/values.yaml index 2b23b29cf..a3cb8133f 100644 --- a/examples/dt/uni04delta/values.yaml +++ b/examples/dt/uni04delta/values.yaml @@ -102,6 +102,8 @@ data: subnetName: subnet1 - name: storagemgmt subnetName: subnet1 + - name: nfs + subnetName: subnet1 nodes: edpm-compute-0: @@ -119,6 +121,8 @@ data: subnetName: subnet1 - name: tenant subnetName: subnet1 + - name: nfs + subnetName: subnet1 edpm-compute-1: ansible: ansibleHost: 192.168.122.101 @@ -134,6 +138,8 @@ data: subnetName: subnet1 - name: tenant subnetName: subnet1 + - name: nfs + subnetName: subnet1 services: - bootstrap