Commit 063cf83a authored by Cole Mickens's avatar Cole Mickens

respond to davidopp's feedback

also: - adds a mechanism to build and upload hyperkube for non-official releases - adds a mechanism for proxying azkube's traffic - --no-cloud-provider for now - support specifying the resource group for CI scenarios
parent a9448d0d
...@@ -14,18 +14,32 @@ ...@@ -14,18 +14,32 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# cp config-default.sh config-real.sh # Azure location to deploy to. (Storage account, resource group, resources)
# export KUBE_CONFIG_FILE=`pwd`/config-real.sh # Must be be specified in the compact form. ("westus" is ok, "West US" is not)
AZURE_LOCATION="${AZURE_LOCATION:-"westus"}"
AZURE_LOCATION="westus" # this must be in the FQDN format so that url construction works in util.sh
AZURE_DEPLOY_ID="" # this will be autogenerated using the current date/time if left blank # An identifier for the deployment. It can be left blank and an identifier
AZURE_MASTER_SIZE="Standard_A1" # will be generated from the date/time.
AZURE_MINION_SIZE="Standard_A1" AZURE_DEPLOY_ID="${AZURE_DEPLOY_ID:-"kube-$(date +"%Y%m%d-%H%M%S")"}"
AZURE_USERNAME="kube"
NUM_NODES=3 AZURE_MASTER_SIZE="${AZURE_MASTER_SIZE:-"Standard_A1"}"
AZURE_NODE_SIZE="${AZURE_NODE_SIZE:-"Standard_A1"}"
#AZURE_TENANT_ID=""
#AZURE_SUBSCRIPTION_ID="" # Username of the admin account created on the VMs
#AZURE_AUTH_METHOD="client_secret" AZURE_USERNAME="${AZURE_USERNAME:-"kube"}"
#AZURE_CLIENT_ID=""
#AZURE_CLIENT_SECRET="" # Initial number of worker nodes to provision
NUM_NODES=${NUM_NODES:-3}
# The Azure Active Directoy (AAD) TenantID to which the subscription belongs.
# This should be a GUID.
AZURE_TENANT_ID="${AZURE_TENANT_ID:-}"
# The target Azure subscription ID
# This should be a GUID.
AZURE_SUBSCRIPTION_ID="${AZURE_SUBSCRIPTION_ID:-}"
# The authentication mechanism to use. The default "device" is recommended as
# it requires the least ahead-of-time setup.
# This should be one of: { "device", "client_secret" }
AZURE_AUTH_METHOD="${AZURE_AUTH_METHOD:-"device"}"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment