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

ASC-1683 Enable Ceph MNAIO Deployments #3511

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions gating/mnaio_vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ export DEPLOY_OSA="false"
export RUN_OSA="false"
export CONFIGURE_OPENSTACK="false"

#
# Enable Ceph backend if specified by the RE_JOB_SCENARIO
#
if [[ ${RE_JOB_SCENARIO} =~ .*ceph.* ]]; then
export ENABLE_CEPH_STORAGE="true"
fi

# If there is no set of images available yet, or this
# is the deploy action, then we need to build from scratch.
if [[ "${RPCO_IMAGES_AVAILABLE}" == "false" ]] || [[ "${RE_JOB_ACTION}" == "deploy" ]]; then
Expand Down Expand Up @@ -92,6 +99,7 @@ function run_mnaio_playbook() {
-e loadbalancer_vm_server_ram=${LOADBALANCER_VM_SERVER_RAM:-"2048"} \
-e logging_vm_server_ram=${LOGGING_VM_SERVER_RAM:-"16384"} \
-e swift_vm_server_ram=${SWIFT_VM_SERVER_RAM:-"2048"} \
-e enable_ceph_storage=${ENABLE_CEPH_STORAGE:-"false"} \
-e container_tech=${CONTAINER_TECH:-"lxc"} \
-e ipxe_kernel_base_url=${IPXE_KERNEL_BASE_URL:-"http://boot.ipxe.org"} \
-e ipxe_path_url=${IPXE_PATH_URL:-""} ${MNAIO_ANSIBLE_PARAMETERS} \
Expand Down