-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trigger ceph-migration from data-plane-adoption
This patch updates the data-plane-adoption playbook to trigger the ceph migration when the associated variable is set. In addition, j2 related files are added within the templates/ directory, and a set of ceph-overrides that are relevant for the CI context are provided. Change-Id: I9b6c304f0dbded9a19e011d3353465af3c7a7da7 Signed-off-by: Francesco Pantano <[email protected]>
- Loading branch information
Showing
5 changed files
with
102 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[defaults] | ||
callback_whitelist = profile_json,profile_tasks | ||
roles_path = /home/zuul/src/github.com/openstack-k8s-operators/data-plane-adoption/tests/roles | ||
module_utils=/home/zuul/src/github.com/openstack-k8s-operators/data-plane-adoption/tests/plugins/module_utils | ||
library=/home/zuul/src/github.com/openstack-k8s-operators/data-plane-adoption/tests/plugins/modules |
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,18 @@ | ||
# The ceph base image is split into ns/img/tag for backward compatibility with | ||
# tripleo modules | ||
ceph_container_ns: registry.redhat.io/rhceph | ||
ceph_container_image: rhceph-6-rhel9 | ||
ceph_container_tag: latest | ||
# Ceph dashboard and Ceph ingress related images | ||
ceph_haproxy_container_image: "registry.redhat.io/rhceph/rhceph-haproxy-rhel9:latest" | ||
ceph_keepalived_container_image: "registry.redhat.io/rhceph/keepalived-rhel9:latest" | ||
ceph_alertmanager_container_image: "registry.redhat.io/openshift4/ose-prometheus-alertmanager:v4.12" | ||
ceph_grafana_container_image: "registry.redhat.io/rhceph/rhceph-6-dashboard-rhel9:latest" | ||
ceph_node_exporter_container_image: "registry.redhat.io/openshift4/ose-prometheus-node-exporter:v4.12" | ||
ceph_prometheus_container_image: "registry.redhat.io/openshift4/ose-prometheus:v4.12" | ||
ceph_spec_render_dir: "/home/tripleo-admin" | ||
ceph_daemons_layout: | ||
monitoring: false | ||
rbd: true | ||
rgw: false | ||
mds: 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
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,7 @@ | ||
overcloud: | ||
hosts: | ||
{% for h in inventory_map | default({}) %} | ||
{{ h.hostname }}: | ||
ansible_user: tripleo-admin | ||
ansible_host: {{ h.ip }} | ||
{% endfor %} |
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