Update reviews for ccp and fix missing script
This commit is contained in:
parent
1fb6f36e9c
commit
7546d75513
3 changed files with 2 additions and 12 deletions
1
Vagrantfile
vendored
1
Vagrantfile
vendored
|
@ -91,6 +91,7 @@ Vagrant.configure("2") do |config|
|
|||
config.vm.provision "file", source: "ssh", destination: "~/ssh"
|
||||
if master
|
||||
config.vm.provision "deploy-k8s", type: "file", source: "deploy-k8s.kargo.sh", destination: "~/deploy-k8s.kargo.sh"
|
||||
config.vm.provision "deploy-ccp", type: "file", source: "deploy-ccp.sh", destination: "~/deploy-ccp.sh"
|
||||
config.vm.provision "custom.yaml", type: "file", source: "custom.yaml", destination: "~/custom.yaml"
|
||||
config.vm.provision "playbooks", type: "file", source: "playbooks", destination: "~/playbooks"
|
||||
config.vm.provision "nodes", type: "file", source: "nodes", destination: "~/nodes"
|
||||
|
|
|
@ -78,18 +78,6 @@ fetch_app_def() {
|
|||
|
||||
cd $LOCAL_REPO
|
||||
|
||||
cd ms-mariadb
|
||||
git review -d $mariadb
|
||||
cd -
|
||||
cd ms-keystone
|
||||
git review -d $keystone
|
||||
cd -
|
||||
cd ms-memcached
|
||||
git review -d $memcached
|
||||
cd -
|
||||
cd ms-rabbitmq
|
||||
git review -d $rabbitmq
|
||||
cd -
|
||||
cd ms-horizon
|
||||
git review -d $horizon
|
||||
cd -
|
||||
|
|
|
@ -15,6 +15,7 @@ sudo sh -c 'cd /root/kargo-cli && python setup.py install'
|
|||
|
||||
# k8s deploy script and configs
|
||||
sudo sh -c 'cp -a ~vagrant/deploy-k8s.kargo.sh /root/ && chmod 755 /root/deploy-k8s.kargo.sh'
|
||||
sudo sh -c 'cp -a ~vagrant/deploy-ccp.sh /root/ && chmod 755 /root/deploy-ccp.sh'
|
||||
sudo cp -a ~vagrant/custom.yaml /root/custom.yaml
|
||||
sudo cp -a ~vagrant/playbooks /root/playbooks
|
||||
sudo cp -a ~vagrant/ccp /root/ccp
|
||||
|
|
Loading…
Reference in a new issue