-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.sh
36 lines (27 loc) · 882 Bytes
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env bash
# ----------------------------------------
# Azure specific settings
RESOURCE_GROUP="KubeCluster"
LOCATION="eastus"
KUBERNETES_VERSION="1.9.6"
# ----------------------------------------
# CPU machines:
# - Standard_D2_2: smaller
# GPU machines:
# - Standard_NC6: smaller
VM_SIZE="Standard_NC6"
# How many nodes in the cluster
VM_NUMBER=1
# ----------------------------------------
# ----------------------------------------
# Kubernetes settings
CLUSTER_NAME="mxoperator-cluster"
# ----------------------------------------
# ----------------------------------------
# Operator settings
CHART=https://storage.googleapis.com/tf-on-k8s-dogfood-releases/latest/tf-job-operator-chart-latest.tgz
OPERATOR_NAME="tf-job"
HELM_ARGS="--set cloud=azure"
# ----------------------------------------
# Distributed job settings
JOB_TEMPLATE_PATH=/path/to/template