forked from oracle-quickstart/oke-flink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.template
79 lines (71 loc) · 2.06 KB
/
terraform.tfvars.template
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
## Copyright © 2022, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
region = "us-ashburn-1"
tenancy_ocid = "ocid1.tenancy.oc1.."
## Compartments
vcn_compartment_id = "ocid1.compartment.oc1.."
cluster_compartment_id = "ocid1.compartment.oc1.."
## Network
use_existing_vcn = false
vcn_cidr = "10.0.0.0/16"
## Endpoint
is_endpoint_public = true
## Cluster
cluster_name = "Flink Cluster"
kubernetes_version=""
ssh_public_key = "ssh-rsa AAAA..."
node_pool_count = 1
# add_cluster_tag=
# cluster_tag=
# pods_cidr="10.1.0.0/16"
# services_cidr="10.2.0.0/16"
# np1_subnet=
np1_node_count = 3
np1_node_shape = "VM.Standard.E3.Flex"
np1_image_id = "<lookup image_ids with 'oci ce node-pool-options get --node-pool-option-id all' >"
# np1_add_tag=
# np1_tag=
np1_ocpus = 4
np1_memory_gb = 32
np1_enable_autoscaler=true
np1_autoscaler_min_nodes=1
np1_autoscaler_max_nodes=3
# np2_subnet=
np2_create_new_subnet = true
# np2_node_count = 1
np2_node_shape = "VM.GPU3.1"
np2_image_id = "<lookup image_ids with 'oci ce node-pool-options get --node-pool-option-id all' >"
np2_ha = true
# np2_availability_domain="UWQV:US-ASHBURN-AD-2"
# np2_ocpus = 4
# np2_memory_gb = 32
np2_enable_autoscaler=true
np2_autoscaler_min_nodes=0
np2_autoscaler_max_nodes=3
# np2_add_tag=
# np2_tag=
# np3_subnet=
np3_create_new_subnet = true
# np3_node_count=
# np3_node_shape=
# np3_ocpus = 4
# np3_memory_gb = 32
# np3_enable_autoscaler=true
# np3_autoscaler_min_nodes=0
# np3_autoscaler_max_nodes=3
# np3_image_id=
# np3_add_tag=
# np3_tag=
# allow_deploy_private_lb = false
# private_lb_subnet=
allow_deploy_public_lb = true
# public_lb_subnet=
enable_secret_encryption = false
secrets_key_id = null #"ocid1.key.oc1..."
enable_image_validation = false
image_validation_key_id = null # "ocid1.key.oc1..."
# enable_pod_admission_controller=
enable_cert_manager = true
enable_flink = true
enable_metrics_server = true
enable_monitoring_stack = true