-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a kind configuration file for setting up a four-node Kubernetes cluster suitable for e2e testing in GitHub workflows. Also increased the timeout value for NFS PVC from 30 to 60 seconds. Signed-off-by: liadlauber <liad6500@gmail.com>
- Loading branch information
1 parent
a3b9601
commit abc1cb2
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# four node (one control plane + three workers) cluster config for k8s e2e test in github workflow! | ||
# for the local registry config see https://kind.sigs.k8s.io/docs/user/local-registry/ | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
- role: worker | ||
- role: worker | ||
- role: worker | ||
containerdConfigPatches: | ||
- |- | ||
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."kind-registry:5000"] | ||
endpoint = ["http://kind-registry:5000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters