Refactored kube-push.sh script

The script allows also to push binaries only to the master or specified node.
Added support for released tars.

Introduced new push methods and implemented them for GCE.
This commit is contained in:
Piotr Szczesniak
2015-06-01 17:59:12 +02:00
parent 0bb78fe6c5
commit 0142e4c9c2
5 changed files with 210 additions and 110 deletions

View File

@@ -47,11 +47,26 @@ function kube-down {
echo "TODO"
}
# Update a kubernetes cluster with latest source
# Update a kubernetes cluster
function kube-push {
echo "TODO"
}
# Prepare update a kubernetes component
function prepare-push {
echo "TODO"
}
# Update a kubernetes master
function push-master {
echo "TODO"
}
# Update a kubernetes node
function push-node {
echo "TODO"
}
# Execute prior to running tests to build a release if required for env
function test-build-release {
echo "TODO"