mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
12 lines
268 B
Bash
Executable File
12 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
INVENTORY="nodes_to_inv.py"
|
|
|
|
echo "Createing repository and CCP images, it may take a while..."
|
|
ansible-playbook -i $INVENTORY playbooks/ccp-build.yaml
|
|
|
|
echo "Deploying up OpenStack CCP..."
|
|
ansible-playbook -i $INVENTORY playbooks/ccp-deploy.yaml
|