mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
35 lines
786 B
YAML
35 lines
786 B
YAML
|
kind: Cluster
|
||
|
apiVersion: kind.x-k8s.io/v1alpha4
|
||
|
kubeadmConfigPatches:
|
||
|
- |-
|
||
|
kind: ClusterConfiguration
|
||
|
controllerManager:
|
||
|
extraArgs:
|
||
|
bind-address: 0.0.0.0
|
||
|
etcd:
|
||
|
local:
|
||
|
extraArgs:
|
||
|
listen-metrics-urls: http://0.0.0.0:2382
|
||
|
scheduler:
|
||
|
extraArgs:
|
||
|
bind-address: 0.0.0.0
|
||
|
- |-
|
||
|
kind: KubeProxyConfiguration
|
||
|
metricsBindAddress: 0.0.0.0
|
||
|
nodes:
|
||
|
- role: control-plane
|
||
|
kubeadmConfigPatches:
|
||
|
- |-
|
||
|
kind: InitConfiguration
|
||
|
nodeRegistration:
|
||
|
kubeletExtraArgs:
|
||
|
node-labels: "ingress-ready=true"
|
||
|
extraPortMappings:
|
||
|
- containerPort: 80
|
||
|
hostPort: 80
|
||
|
protocol: TCP
|
||
|
- containerPort: 443
|
||
|
hostPort: 443
|
||
|
protocol: TCP
|
||
|
- role: worker
|