-
Notifications
You must be signed in to change notification settings - Fork 6
/
config
39 lines (30 loc) · 1.24 KB
/
config
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
37
38
39
#!/bin/sh
# ------------------------ [START] required variables ------------------------ #
# EXAMPLES:
# CLOUDSDK_PROJECT_NAME='steven-aldinger'
# CLOUDSDK_CLUSTER_NAME='development'
# CLOUDSDK_COMPUTE_ZONE='us-east1-c'
CLOUDSDK_PROJECT_NAME='grinsides-llc-gcp'
CLOUDSDK_CLUSTER_NAME='development'
CLOUDSDK_COMPUTE_ZONE='us-east1-c'
# ------------------------- [END] required variables ------------------------- #
# ------------------------ [START] optional variables ------------------------ #
# will default to GKE's default at the time the script is run
CLUSTER_VERSION=''
# must be greater than or equal to 3
# defaults to '3'
NODE_COUNT='3'
# defaults to 'n1-standard-1'
MACHINE_TYPE='n1-standard-1'
# NOTE: For building and pushing images, the script will use the defaults explained below.
# For running the kubernetes job, the script will default to 'tymlezgkek8s/gke-glusterfs-heketi:latest'
# defaults to "gcr.io/$CLOUDSDK_PROJECT_NAME"
DOCKER_REGISTRY=''
# defaults to 20
DISK_SIZE='20'
# used if you want to build your own image
# defaults to 'glusterfs-heketi-bootstrap'
DOCKER_IMAGE_NAME='glusterfs-heketi-bootstrap'
# defaults to '0.0.1'
DOCKER_IMAGE_VERSION=''
# ------------------------- [END] optional variables ------------------------- #