Skip to content

Commit

Permalink
Add multi-cell DT
Browse files Browse the repository at this point in the history
  • Loading branch information
jamepark4 committed Sep 19, 2024
1 parent 21ece11 commit c7b1d44
Show file tree
Hide file tree
Showing 22 changed files with 993 additions and 0 deletions.
61 changes: 61 additions & 0 deletions automation/vars/nova-multiplecells.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
vas:
nova-multiplecells:
stages:
- path: examples/dt/nova/multiplecells/control-plane/nncp
wait_conditions:
- >-
oc -n openstack wait nncp
-l osp/nncm-config-type=standard
--for jsonpath='{.status.conditions[0].reason}'=SuccessfullyConfigured
--timeout=60s
values:
- name: network-values
src_file: values.yaml
build_output: nncp.yaml

- path: examples/dt/nova/multiplecells/control-plane
wait_conditions:
- >-
oc -n openstack wait osctlplane controlplane --for condition=Ready
--timeout=1200s
values:
- name: network-values
src_file: nncp/values.yaml
- name: service-values
src_file: service-values.yaml
build_output: control-plane.yaml

- path: examples/dt/nova/multiplecells/edpm/nodeset
wait_conditions:
- >-
oc -n openstack wait
osdpns openstack-edpm --for condition=SetupReady
--timeout=60m
values:
- name: edpm-nodeset-values
src_file: values.yaml
build_output: nodeset.yaml

- path: examples/dt/nova/multiplecells/edpm/nodeset2
wait_conditions:
- >-
oc -n openstack wait
osdpns openstack-edpm-2 --for condition=SetupReady
--timeout=60m
values:
- name: edpm-nodeset2-values
src_file: values.yaml
build_output: nodeset2.yaml

- path: examples/dt/nova/multiplecells/edpm/deployment
wait_conditions:
- >-
oc -n openstack wait openstackdataplanedeployment
edpm-deployment --for condition=Ready
--timeout=60m
values:
- name: edpm-deployment-values
src_file: values.yaml
build_output: deployment.yaml

Check failure on line 61 in automation/vars/nova-multiplecells.yaml

View workflow job for this annotation

GitHub Actions / yaml-lint

61:1 [empty-lines] too many blank lines (1 > 0)
11 changes: 11 additions & 0 deletions dt/nova/multiplecells/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Deployed Topology - Nova/MultipleCells

If you are looking for information on how to deploy the multiplecells based DT, then
please the [README](../../examples/dt/nova/multiplecells/README.md) in the examples
directory.

This directory `dt/nova/multiplecells/`, exists so that the
[kustomization.yaml](../../examples/dt/nova/multiplecells/kustomization.yaml) in
the examples directory of nova-multiplecells topology, reference it by path as a
component. It's contents are likely uninteresting unless you want to understand
how kustomize was implemented in this repository.
21 changes: 21 additions & 0 deletions dt/nova/multiplecells/edpm/deployment/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
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:
- ../../../../../lib/dataplane/deployment
20 changes: 20 additions & 0 deletions dt/nova/multiplecells/edpm/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component

transformers:
- |-
apiVersion: builtin
kind: NamespaceTransformer
metadata:
name: _ignored_
namespace: openstack
setRoleBindingSubjects: none
unsetOnly: true
fieldSpecs:
- path: metadata/name
kind: Namespace
create: true
components:
- ../../../lib/dataplane
20 changes: 20 additions & 0 deletions dt/nova/multiplecells/edpm/nodeset/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component

transformers:
- |-
apiVersion: builtin
kind: NamespaceTransformer
metadata:
name: _ignored_
namespace: openstack
setRoleBindingSubjects: none
unsetOnly: true
fieldSpecs:
- path: metadata/name
kind: Namespace
create: true
components:
- ../../../../../lib/dataplane/nodeset
59 changes: 59 additions & 0 deletions dt/nova/multiplecells/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component

transformers:
- |-
apiVersion: builtin
kind: NamespaceTransformer
metadata:
name: _ignored_
namespace: openstack
setRoleBindingSubjects: none
unsetOnly: true
fieldSpecs:
- path: metadata/name
kind: Namespace
create: true
components:
- ../../../lib/networking/metallb
- ../../../lib/networking/netconfig
- ../../../lib/networking/nad
- ../../../lib/control-plane

replacements:
- source:
kind: ConfigMap
name: service-values
fieldPath: data.galera.templates
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.galera.templates
options:
create: true
- source:
kind: ConfigMap
name: service-values
fieldPath: data.rabbitmq.templates
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.rabbitmq.templates
options:
create: true
- source:
kind: ConfigMap
name: service-values
fieldPath: data.nova.template.cellTemplates
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.nova.template.cellTemplates
options:
create: true

Check failure on line 59 in dt/nova/multiplecells/kustomization.yaml

View workflow job for this annotation

GitHub Actions / yaml-lint

59:1 [empty-lines] too many blank lines (1 > 0)
12 changes: 12 additions & 0 deletions dt/nova/multiplecells/namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
apiVersion: builtin
kind: NamespaceTransformer
metadata:
name: _ignored_
namespace: openstack
setRoleBindingSubjects: none
unsetOnly: true
fieldSpecs:
- path: metadata/name
kind: Namespace
create: true
28 changes: 28 additions & 0 deletions examples/dt/nova/multiplecells/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Deployed Topology - Nova/MultipleCells

TBD

## Purpose

TBD

## Environment

### Nodes


## Node topology
TBD

### Networks
TBD

#### Networks in RH OSP
TBD

### Services, enabled features and configurations
TBD

#### Support services
TBD

2 changes: 2 additions & 0 deletions examples/dt/nova/multiplecells/control-plane.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Configuring networking and deploy the OpenStack control plane
TBD
10 changes: 10 additions & 0 deletions examples/dt/nova/multiplecells/control-plane/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

components:
- ../../../../../dt/nova/multiplecells

resources:
- nncp/values.yaml
- service-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

transformers:
- |-
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
Loading

0 comments on commit c7b1d44

Please sign in to comment.