mirror of
https://github.com/jcwimer/kubernetes-ansible
synced 2026-03-25 00:54:44 +00:00
12 lines
300 B
Bash
12 lines
300 B
Bash
#!/bin/bash
|
|
script_dir="$( dirname $(readlink -f ${BASH_SOURCE[0]}))"
|
|
project_dir=${script_dir}/../..
|
|
cd $project_dir
|
|
|
|
export PRIVATE_KEY=/home/vagrant/test_rsa;
|
|
export DEPLOY_USER=vagrant
|
|
|
|
cp tests/files/hosts hosts
|
|
cp tests/files/group_vars_all group_vars/all
|
|
bash supporting-scripts/run-setup.sh
|