File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ echo "Mounting image in the Kind cluster"
1010kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.17.0/cert-manager.yaml
1111kubectl wait --for=condition=available --timeout=40s deployment/cert-manager-webhook -n cert-manager
1212make docker-build IMG=k8s-overcommit/webhook:teste2e
13- kind load docker-image k8s-overcommit/webhook:teste2e --name kuttl-cluster
13+ kind load docker-image k8s-overcommit/webhook:teste2e --name kuttl-cluster --config ./hack/kind-config.yaml
1414echo " Mounted image in the Kind cluster, instaling operator"
1515helm install k8s-overcommit chart --set createClasses=false --set createNamespace=true --set namespace=k8s-overcommit --set deployment.image.tag=teste2e --set deployment.image.registry=docker.io --set deployment.image.image=k8s-overcommit/webhook
1616echo " Operator installed, waiting for the deployment to be ready"
Original file line number Diff line number Diff line change 1+ kind : Cluster
2+ apiVersion : kind.x-k8s.io/v1alpha4
3+
4+ featureGates :
5+ InPlacePodVerticalScaling : true
6+
7+ nodes :
8+ - role : control-plane
9+ image : kindest/node:v1.35.0
10+ kubeadmConfigPatches :
11+ - |
12+ kind: ClusterConfiguration
13+ apiServer:
14+ extraArgs:
15+ feature-gates: InPlacePodVerticalScaling=true
16+ controllerManager:
17+ extraArgs:
18+ feature-gates: InPlacePodVerticalScaling=true
19+ scheduler:
20+ extraArgs:
21+ feature-gates: InPlacePodVerticalScaling=true
22+
23+ - role : worker
24+ image : kindest/node:v1.35.0
You can’t perform that action at this time.
0 commit comments