12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # -- Affinity for cilium-agent.
- affinity:
- podAntiAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- - topologyKey: kubernetes.io/hostname
- labelSelector:
- matchLabels:
- k8s-app: cilium
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: cilium.cluster.local/schedulable
- operator: NotIn
- values:
- - "false"
- operator:
- affinity:
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: cilium-operator.cluster.local/schedulable
- operator: NotIn
- values:
- - "false"
- k8sServiceHost: "192.168.0.144"
- k8sServicePort: "6443"
- l2announcements:
- enabled: true
- l2podAnnouncements:
- enabled: true
- cluster:
- name: "cluster1"
- id: 1
- ipv4NativeRoutingCIDR: 10.0.0.0/9
- # Each individual node is made aware of all pod IPs of all other nodes and
- # routes are inserted into the Linux kernel routing table to represent
- # this. If all nodes share a single L2 network, then this can be taken care of
- # by enabling the option auto-direct-node-routes: true. Otherwise, an
- # additional system component such as a BGP daemon must be run to distribute
- # the routes. See the guide Using Kube-Router to Run BGP (deprecated) on how
- # to achieve this using the kube-router project.
- #
- # -- Enable installation of PodCIDR routes between worker
- # nodes if worker nodes share a common L2 network segment.
- autoDirectNodeRoutes: true
|