30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
apiVersion: ctlptl.dev/v1alpha1
|
|
kind: Registry
|
|
name: ctlptl-registry
|
|
port: 5000
|
|
---
|
|
apiVersion: ctlptl.dev/v1alpha1
|
|
kind: Cluster
|
|
product: kind
|
|
registry: ctlptl-registry
|
|
name: kind-speckle-dui
|
|
kindV1Alpha4Cluster:
|
|
nodes:
|
|
- role: control-plane
|
|
kubeadmConfigPatches:
|
|
- |
|
|
kind: InitConfiguration
|
|
nodeRegistration:
|
|
kubeletExtraArgs:
|
|
node-labels: "ingress-ready=true"
|
|
extraMounts: []
|
|
extraPortMappings:
|
|
- containerPort: 80
|
|
hostPort: 80 # Docker requires privileged ports binding permissions https://docs.docker.com/desktop/mac/permission-requirements/#binding-privileged-ports
|
|
protocol: TCP
|
|
listenAddress: '127.0.0.1' #DO NOT REMOVE - this is required to prevent access from the local network or the world!!!
|
|
- containerPort: 443
|
|
hostPort: 443 # Docker requires privileged ports binding permissions https://docs.docker.com/desktop/mac/permission-requirements/#binding-privileged-ports
|
|
protocol: TCP
|
|
listenAddress: '127.0.0.1' #DO NOT REMOVE - this is required to prevent access from the local network or the world!!!
|