Skip to content

Commit 511ba88

Browse files
committed
Clean up .env.template
1 parent e396238 commit 511ba88

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

.env.template

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@ TERRAFORM_STATE_BUCKET=
2626
# "cpu_target": 0.7 // Target CPU utilization percentage for autoscaling (0-1)
2727
# },
2828
# "boot_disk": {
29-
# "disk_type": "pd-ssd", // Boot disk type
29+
# "disk_type": "pd-ssd", // Boot disk type (only persistent disks are currently supported)
3030
# "size_gb": 100 // Boot disk size in GB
3131
# },
3232
# "cache_disks": {
33-
# "disk_type": "local-ssd", // Cache disk type
33+
# "disk_type": "local-ssd", // Cache disk type (local-ssd or pd-ssd)
3434
# "size_gb": 375, // Cache disk size in GB
35-
# "count": 3 // Number of cache disks
35+
# "count": 1 // Number of cache disks
3636
# }
3737
# }
3838
# Build cluster configuration
3939
# Example:
40-
# BUILD_CLUSTER_CONFIG_JSON='{"cluster_size": 1, "machine":{"type":"n1-standard-8","min_cpu_platform":"Intel Skylake"}, "autoscaler": {"size_min": 1, "size_max": 1, "memory_target": 100, "cpu_target": 0.7}, "boot_disk":{"disk_type":"pd-ssd","size_gb":100}, "cache_disks":{"disk_type":"local-ssd","size_gb":375,"count":3}}'
40+
# BUILD_CLUSTER_CONFIG_JSON='{"cluster_size": 1, "machine":{"type":"n1-standard-8","min_cpu_platform":"Intel Skylake"}, "autoscaler": {"size_min": 1, "size_max": 1, "memory_target": 100, "cpu_target": 0.7}, "boot_disk":{"disk_type":"pd-ssd","size_gb":100}, "cache_disks":{"disk_type":"local-ssd","size_gb":375,"count":1}}'
4141
BUILD_CLUSTER_CONFIG_JSON=
4242

4343
# Client cluster configuration
4444
# Example:
45-
# CLIENT_CLUSTERS_CONFIG_JSON='[{"cluster_size": 1, "machine":{"type":"n1-standard-8","min_cpu_platform":"Intel Skylake"}, "autoscaler": {"size_min": 1, "size_max": 2, "memory_target": 100, "cpu_target": 0.7}, "boot_disk":{"disk_type":"pd-ssd","size_gb":100}, "cache_disks":{"disk_type":"local-ssd","size_gb":375,"count":3}}]'
45+
# CLIENT_CLUSTERS_CONFIG_JSON='[{"cluster_size": 1, "machine":{"type":"n1-standard-8","min_cpu_platform":"Intel Skylake"}, "autoscaler": {"size_min": 1, "size_max": 2, "memory_target": 100, "cpu_target": 0.7}, "boot_disk":{"disk_type":"pd-ssd","size_gb":100}, "cache_disks":{"disk_type":"local-ssd","size_gb":375,"count":1}}]'
4646
CLIENT_CLUSTERS_CONFIG_JSON=
4747

4848
# This is the nomad and consul server (only for scheduling and service discovery)
@@ -56,21 +56,13 @@ API_MACHINE_TYPE=
5656
# e.g. 1
5757
API_CLUSTER_SIZE=
5858

59-
# eg n1-standard-8
60-
BUILD_MACHINE_TYPE=
61-
# e.g. 1
62-
BUILD_CLUSTER_SIZE=
63-
# Number of 375 GB NVME disks for build cache (default: 3)
64-
BUILD_CLUSTER_CACHE_DISK_COUNT=
65-
6659
# e.g. e2-standard-4
6760
CLICKHOUSE_MACHINE_TYPE=
6861
# e.g. 2
6962
CLICKHOUSE_CLUSTER_SIZE=
7063

7164
# Boot disk types (pd-ssd, pd-balanced, pd-standard, pd-extreme)
7265
# Default: pd-ssd
73-
BUILD_BOOT_DISK_TYPE=
7466
API_BOOT_DISK_TYPE=
7567
SERVER_BOOT_DISK_TYPE=
7668
CLICKHOUSE_BOOT_DISK_TYPE=

0 commit comments

Comments
 (0)