Created
April 10, 2023 16:50
-
-
Save amoilanen/4fc95d6ca3f53af5128592bffd95b7d9 to your computer and use it in GitHub Desktop.
Configuration for creating a local cluster with Kind https://kind.sigs.k8s.io/
This file contains hidden or 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
kind: Cluster | |
apiVersion: kind.x-k8s.io/v1alpha4 | |
# One control plane node and three "workers". | |
# | |
# While these will not add more real compute capacity and | |
# have limited isolation, this can be useful for testing | |
# rolling updates etc. | |
# | |
# The API-server and other control plane components will be | |
# on the control-plane node. | |
# | |
# You probably don't need this unless you are testing Kubernetes itself. | |
nodes: | |
- role: control-plane | |
- role: worker | |
- role: worker | |
- role: worker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment