f2bdcae040
- Use kubeadm configuration to not set taints on control plain nodes (instead of removing them after deployment). - Fix ssh client key permissions. - Update the Mariadb ingress test job so it is inherinted from the plain compute-kit test job. And also remote it from the check pipeline. Change-Id: I92c73606ed9b9161f39ea1971b3a7db7593982ff
28 lines
556 B
YAML
28 lines
556 B
YAML
---
|
|
apiVersion: kubeproxy.config.k8s.io/v1alpha1
|
|
kind: KubeProxyConfiguration
|
|
mode: ipvs
|
|
ipvs:
|
|
strictARP: true
|
|
...
|
|
---
|
|
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: ClusterConfiguration
|
|
networking:
|
|
serviceSubnet: "{{ kubeadm.service_cidr }}" # --service-cidr
|
|
podSubnet: "{{ kubeadm.pod_network_cidr }}" # --pod-network-cidr
|
|
dnsDomain: "cluster.local"
|
|
...
|
|
---
|
|
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: InitConfiguration
|
|
nodeRegistration:
|
|
taints: []
|
|
...
|
|
---
|
|
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: JoinConfiguration
|
|
nodeRegistration:
|
|
taints: []
|
|
...
|