You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
996 B
Django/Jinja
33 lines
996 B
Django/Jinja
# This section includes base Calico installation configuration.
|
|
# For more information, see: https://projectcalico.docs.tigera.io/master/reference/installation/api#operator.tigera.io/v1.Installation
|
|
apiVersion: operator.tigera.io/v1
|
|
kind: Installation
|
|
metadata:
|
|
name: default
|
|
spec:
|
|
# Configures Calico networking.
|
|
calicoNetwork:
|
|
# Note: The ipPools section cannot be modified post-install.
|
|
ipPools:
|
|
- blockSize: 26
|
|
cidr: {{ kubernetes.ipPool.ipv4.cluster_cidr }}
|
|
encapsulation: None
|
|
natOutgoing: Enabled
|
|
nodeSelector: all()
|
|
|
|
- blockSize: 122
|
|
cidr: {{ kubernetes.ipPool.ipv6.cluster_cidr }}
|
|
encapsulation: None
|
|
natOutgoing: Enabled
|
|
nodeSelector: all()
|
|
|
|
---
|
|
|
|
# This section configures the Calico API server.
|
|
# For more information, see: https://projectcalico.docs.tigera.io/master/reference/installation/api#operator.tigera.io/v1.APIServer
|
|
apiVersion: operator.tigera.io/v1
|
|
kind: APIServer
|
|
metadata:
|
|
name: default
|
|
spec: {}
|