16 lines
549 B
YAML
16 lines
549 B
YAML
# this config file is similar to the default, except we set the cluster's
|
|
# service cidr range to be 10.0.0.0/16.
|
|
# we do this because we need a fixed/predictable clusterIP of 10.0.0.15 for the
|
|
# nginx-ingress service, in order to perform HTTP01 validations during tests.
|
|
|
|
apiVersion: kind.sigs.k8s.io/v1alpha1
|
|
kind: Config
|
|
# template for kubeadm config, "" -> the default template
|
|
kubeadmConfigPatches:
|
|
- |
|
|
# config generated by kind
|
|
apiVersion: kubeadm.k8s.io/v1alpha3
|
|
kind: ClusterConfiguration
|
|
networking:
|
|
serviceSubnet: 10.0.0.0/16
|