Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expanding procedure to include removal of TripleO services #471

Merged
merged 1 commit into from
May 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,41 @@ the 17 node.
`edpm_tuned_profile` variable in the `OpenStackDataPlaneNodeSet` is configured
to use the same profile as set on the (source) OSP 17 node.

. Remove leftover {OpenStackPreviousInstaller} services

.. Create cleanup data plane service
+
[source,yaml]
---
oc apply -f - <<EOF
apiVersion: dataplane.openstack.org/v1beta1
kind: OpenStackDataPlaneService
metadata:
name: tripleo-cleanup
spec:
playbook: osp.edpm.tripleo_cleanup
EOF
---

.. Create OpenStackDataPlaneDeployment to run cleanup
+
[source,yaml]
---
oc apply -f - <<EOF
apiVersion: dataplane.openstack.org/v1beta1
kind: OpenStackDataPlaneDeployment
metadata:
name: tripleo-cleanup
spec:
nodeSets:
- openstack
servicesOverride:
- tripleo-cleanup
EOF
---

.. Wait for the removal to finish.

. Deploy the `OpenStackDataPlaneDeployment` CR:
+
[source,yaml]
Expand Down
Loading