Add the admin_git jail.
This jail hosts the git repo used for the kubernetes cluster manifests. It lives in a jail instead of inside a git website hosted inside kubernetes because it is needed for the bootstrapping process, creating a chicken-and-egg type of scenario. I figure I can set up mirroring of the git repo to a hosted git website for publishing.
This commit is contained in:
@@ -34,6 +34,8 @@ elif [ "$target" = "mrmanager" ]; then
|
||||
ansible-playbook -v -i environments/colo playbook.yaml --diff --limit mrmanager "${@}"
|
||||
elif [ "$target" = "jail_mrmanager_nat_dhcp" ]; then
|
||||
ansible-playbook -v -i environments/jail playbook.yaml --diff --limit mrmanager_nat_dhcp "${@}"
|
||||
elif [ "$target" = "jail_admin_git" ]; then
|
||||
ansible-playbook -v -i environments/jail playbook.yaml --diff --limit admin_git "${@}"
|
||||
else
|
||||
die 1 "Unrecognized target"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user