-
Notifications
You must be signed in to change notification settings - Fork 0
/
ok-cluster.tf
57 lines (57 loc) · 1.27 KB
/
ok-cluster.tf
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
resource "kubernetes_manifest" "cluster_ok_cluster" {
computed_fields = ["metadata.generated"]
field_manager {
force_conflicts = true
}
manifest = {
"apiVersion" = "anywhere.eks.amazonaws.com/v1alpha1"
"kind" = "Cluster"
"metadata" = {
"name" = "ok-cluster"
"namespace" = "default"
}
"spec" = {
"bundlesRef" = {
"apiVersion" = "anywhere.eks.amazonaws.com/v1alpha1"
"name" = "bundles-17"
"namespace" = "eksa-system"
}
"clusterNetwork" = {
"cniConfig" = {
"cilium" = {}
}
"dns" = {}
"pods" = {
"cidrBlocks" = [
"192.168.0.0/16",
]
}
"services" = {
"cidrBlocks" = [
"10.96.0.0/12",
]
}
}
"controlPlaneConfiguration" = {
"count" = 1
}
"datacenterRef" = {
"kind" = "DockerDatacenterConfig"
"name" = "ok-cluster"
}
"externalEtcdConfiguration" = {
"count" = 1
}
"kubernetesVersion" = "1.23"
"managementCluster" = {
"name" = "ok-cluster"
}
"workerNodeGroupConfigurations" = [
{
"count" = 1
"name" = "md-0"
},
]
}
}
}