adding more flavors and nuo recipes
This commit is contained in:
40
recipes/nuo/templates/conf/kind/cluster.yaml.pktpl.hcl
Normal file
40
recipes/nuo/templates/conf/kind/cluster.yaml.pktpl.hcl
Normal file
@ -0,0 +1,40 @@
|
||||
kind: Cluster
|
||||
apiVersion: kind.x-k8s.io/v1alpha4
|
||||
name: ${Vars.Cluster.Name}
|
||||
networking:
|
||||
podSubnet: "${Vars.Cluster.PodSubNet}"
|
||||
serviceSubnet: "${Vars.Cluster.ServieSubNet}"
|
||||
nodes:
|
||||
%{ for nd in Vars.Cluster.Nodes }
|
||||
- role: ${nd.Role}
|
||||
image: kindest/node:v${Vars.Cluster.Version}
|
||||
%{ if nd.Role == "control-plane"}
|
||||
kubeadmConfigPatches:
|
||||
- |
|
||||
kind: InitConfiguration
|
||||
%{ if Vars.Cluster.IngressReady }
|
||||
nodeRegistration:
|
||||
kubeletExtraArgs:
|
||||
node-labels: "ingress-ready=true"
|
||||
%{ endif }
|
||||
extraPortMappings:
|
||||
- containerPort: 31000
|
||||
hostPort: 31000
|
||||
listenAddress: "0.0.0.0" # Optional, defaults to "0.0.0.0"
|
||||
- containerPort: 80
|
||||
hostPort: 8080
|
||||
listenAddress: "0.0.0.0" # Optional, defaults to "0.0.0.0"
|
||||
%{ if Vars.Cluster.IngressReady }
|
||||
labels:
|
||||
ingress-ready: true
|
||||
%{ endif }
|
||||
%{ endif }
|
||||
%{ if nd.Role == "worker" }
|
||||
kubeadmConfigPatches:
|
||||
- |
|
||||
kind: JoinConfiguration
|
||||
nodeRegistration:
|
||||
kubeletExtraArgs:
|
||||
system-reserved: memory=2Gi
|
||||
%{ endif }
|
||||
%{ endfor ~}
|
Reference in New Issue
Block a user