19 lines
445 B
YAML
19 lines
445 B
YAML
# Minimal Kind configuration for testing
|
|
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
name: eveai-test-cluster
|
|
networking:
|
|
apiServerAddress: "127.0.0.1"
|
|
apiServerPort: 3000
|
|
nodes:
|
|
- role: control-plane
|
|
kubeadmConfigPatches:
|
|
- |
|
|
kind: InitConfiguration
|
|
nodeRegistration:
|
|
kubeletExtraArgs:
|
|
node-labels: "ingress-ready=true"
|
|
extraPortMappings:
|
|
- containerPort: 80
|
|
hostPort: 3080
|
|
protocol: TCP |