abb3a10032
This patchset includes the manifests for CAPZ version v0.4.9, which has been added under airshipctl/manifests/function/capz/v0.4.9 Also added an entry in the clusterctl/clusterctl.yaml for CAPZ Change-Id: I3a52257320af1f68ec2d8f4302e7176b73f227dd
28 lines
738 B
YAML
28 lines
738 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: controller-manager
|
|
namespace: system
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: manager
|
|
args:
|
|
- "--metrics-addr=127.0.0.1:8080"
|
|
- "--webhook-port=9443"
|
|
- "--feature-gates=MachinePool=${EXP_MACHINE_POOL:=false},AKS=${EXP_AKS:=false}"
|
|
ports:
|
|
- containerPort: 9443
|
|
name: webhook-server
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /tmp/k8s-webhook-server/serving-certs
|
|
name: cert
|
|
readOnly: true
|
|
volumes:
|
|
- name: cert
|
|
secret:
|
|
defaultMode: 420
|
|
secretName: $(SERVICE_NAME)-cert
|