You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/environment.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,8 @@ The CCM supports the following flags:
56
56
|`--node-cidr-mask-size-ipv4`| Int |`24`| ipv4 cidr mask size for pod cidrs allocated to nodes |
57
57
|`--node-cidr-mask-size-ipv6`| Int |`64`| ipv6 cidr mask size for pod cidrs allocated to nodes |
58
58
|`--nodebalancer-prefix`| String |`ccm`| Name prefix for NoadBalancers. |
59
-
|`--disable-ipv6-node-cidr-allocation`|`false`| disables allocating IPv6 CIDR ranges to nodes when using CCM for node IPAM (set to `true` if IPv6 ranges are not configured on Linode interfaces) |
59
+
|`--disable-ipv6-node-cidr-allocation`| Boolean |`false`| disables allocating IPv6 CIDR ranges to nodes when using CCM for node IPAM (set to `true` if IPv6 ranges are not configured on Linode interfaces) |
60
+
|`--add-public-ipv6-slaac-annotation`| Boolean |`false`| adds public IPv6 SLAAC annotation to nodes (when enabled, the node's public IPv6 SLAAC address will be added as an annotation to the node) |
Copy file name to clipboardExpand all lines: main.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,7 @@ func main() {
101
101
command.Flags().BoolVar(&linode.Options.DisableNodeBalancerVPCBackends, "disable-nodebalancer-vpc-backends", false, "disables nodebalancer backends in VPCs (when enabled, nodebalancers will only have private IPs as backends for backward compatibility)")
command.Flags().BoolVar(&linode.Options.DisableIPv6NodeCIDRAllocation, "disable-ipv6-node-cidr-allocation", false, "disables IPv6 node cidr allocation by ipam controller (when enabled, IPv6 cidr ranges will be allocated to nodes)")
104
+
command.Flags().BoolVar(&linode.Options.AddPublicIPv6SLAACAnnotation, "add-public-ipv6-slaac-annotation", false, "adds public IPv6 SLAAC annotation to nodes (when enabled, the node's public IPv6 SLAAC address will be added as an annotation to the node)")
0 commit comments