Skip to content

Commit

Permalink
Mods patched
Browse files Browse the repository at this point in the history
Signed-off-by: jagpreetsinghsasan <[email protected]>
  • Loading branch information
jagpreetsinghsasan committed Apr 3, 2024
1 parent 74ad353 commit 5dca1b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/bevel/prequisites/setup_k8ind.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ func KindConfig(logger *zap.Logger) {
} else {
utils.ExecuteCmd([]string{"bash", "-c", "kind create cluster --config repo/build/kindconfig.yaml --name bevelcluster"}, false, logger)
utils.ExecuteCmd([]string{"bash", "-c", "kind export kubeconfig --name bevelcluster"},false,logger)
utils.ExecuteCmd([]string{"bash", "-c", "kubectl config view --raw > repo/build/config"},false,logger)
}
}

Expand Down
4 changes: 2 additions & 2 deletions examples/bevel/tpls/k8ind.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ nodes:
{{ $IncrementedControlPaneCount := .ControlPlaneCount | add1 | int }}
{{ range $i, $e := untilStep 1 $IncrementedControlPaneCount 1 }}
- role: control-plane
image: kindest/node:v1.27.11@sha256:681253009e68069b8e01aad36a1e0fa8cf18bb0ab3e5c4069b2e65cafdd70843
image: kindest/node:v1.26.14@sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f
{{ end }}
{{ $IncrementedWorkerCount := .WorkerNodeCount | add1 | int }}
{{ range $i, $e := untilStep 1 $IncrementedWorkerCount 1 }}
- role: worker
image: kindest/node:v1.27.11@sha256:681253009e68069b8e01aad36a1e0fa8cf18bb0ab3e5c4069b2e65cafdd70843
image: kindest/node:v1.26.14@sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f
{{ end }}
`

0 comments on commit 5dca1b1

Please sign in to comment.