forked from fission/fission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kind.yaml
29 lines (28 loc) · 864 Bytes
/
kind.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#######################################################################################
# Kind Config for running a local cluster (More about Kind:https://kind.sigs.k8s.io/)
# Creates a three node cluster for local development and testing
#
#######################################################################################
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.16.4
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
authorization-mode: "AlwaysAllow"
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
hostPort: 443
protocol: TCP
- role: worker
image: kindest/node:v1.16.4
- role: worker
image: kindest/node:v1.16.4