Skip to content

Commit

Permalink
update docs, make flag configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine committed Apr 19, 2024
1 parent b7ff354 commit 09a0ef0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/src/topics/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ kubectl label cluster $CLUSTER_NAME cni=cilium --overwrite

Cilium will then be automatically installed via CAAPH into the labeled cluster.

#### Enabled Features
By default, Cilium's [BGP Control Plane](https://docs.cilium.io/en/stable/network/bgp-control-plane/)
is enabled when using Cilium as the CNI. To disable it, specify `CILIUM_BGPCP=false` when running
`clusterctl generate`.

## CCM

In order for the `InternalIP` and `ExternalIP` of the provisioned Nodes to be set correctly,
Expand Down
2 changes: 2 additions & 0 deletions templates/addons/cilium/cilium-ipv6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ spec:
wait: true
timeout: 5m
valuesTemplate: |
bgpControlPlane:
enabled: ${CILIUM_BGPCP:=true}
ipv6:
enabled: true
ipam:
Expand Down
2 changes: 1 addition & 1 deletion templates/addons/cilium/cilium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
timeout: 5m
valuesTemplate: |
bgpControlPlane:
enabled: true
enabled: ${CILIUM_BGPCP:=true}
ipam:
mode: kubernetes
k8s:
Expand Down

0 comments on commit 09a0ef0

Please sign in to comment.