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
Testing for the Calico CIDR option (see sample yaml at https://docs.mirantis.com/mke-docs/docs/concepts/cni/#providers-configuration) was done. It was found that when configuring the Calico spec.network.providers.extraConfig.clusterCIDRIPv4 value, it is easily configurable before creating the cluster. However when trying to modify the clusterCIDRIPv4 value after the cluster has been created, it does not work. Based on Calico's official documentation, it sounds like or is implied that the clusterCIDRIPv4 can be modified via some sort of migration strategy (by creating a new IPPool - basically a rabbit hole).
For the sake of simplicity, maybe we should state clusterCIDRIPv4 can be configured before deployment. For modifying clusterCIDRIPv4 after cluster deployment, consult Mirantis Support.
Testing for the Calico CIDR option (see sample yaml at https://docs.mirantis.com/mke-docs/docs/concepts/cni/#providers-configuration) was done. It was found that when configuring the Calico
spec.network.providers.extraConfig.clusterCIDRIPv4
value, it is easily configurable before creating the cluster. However when trying to modify theclusterCIDRIPv4
value after the cluster has been created, it does not work. Based on Calico's official documentation, it sounds like or is implied that theclusterCIDRIPv4
can be modified via some sort of migration strategy (by creating a new IPPool - basically a rabbit hole).For the sake of simplicity, maybe we should state
clusterCIDRIPv4
can be configured before deployment. For modifyingclusterCIDRIPv4
after cluster deployment, consult Mirantis Support.Some Test Notes:
Case 1 - Modify a default
mke4.yaml
's:Deploy with
mkectl apply
.Confirm:
Case 2 - Deploy a default
mke4.yaml
then reapply with new CIDR:Deploy with
mkectl apply
.Change
clusterCIDRIPv4: 192.168.0.0/16
toclusterCIDRIPv4: 10.100.0.0/16
then runmkectl apply
again.Verify if the CIDR has updated:
Notice how
mkectl
believe that theclusterCIDRIPv4
value is10.100.0.0/16
but calicoctl still has it set to192.168.0.0/16
.The text was updated successfully, but these errors were encountered: