mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-04-12 00:31:01 +03:00
10 lines
280 B
Bash
Executable File
10 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
INVENTORY="/root/kargo/inventory/inventory.cfg"
|
|
|
|
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
|