VRRP Cleanup #121
Labels
2-Manifests
Relates to manifest/document set related issues
enhancement
New feature or request
priority/critical
Items critical to be implemented, usually by the next release
size s
<=1 days [refactor, 1 function, documentation]
Milestone
To correct the issue raised on VRRP seems to be from the json6902patch merge construct.
The below attributes to be added to the preKubeadmCommands as a part of the list but it has ended up concatenating both the lines which is leading to the issue.
path: "/spec/kubeadmConfigSpec/preKubeadmCommands/-"
value:
apt-get update && apt-get install -y bridge-utils keepalived ipset ipvsadm
systemctl enable --now keepalived
The fix is to put and additional add op for the second line like below.
path: "/spec/kubeadmConfigSpec/preKubeadmCommands/-"
value:
apt-get update && apt-get install -y bridge-utils keepalived ipset ipvsadm
path: "/spec/kubeadmConfigSpec/preKubeadmCommands/-"
value:
systemctl enable --now keepalived
Also remove the apt-get install/update as it should be addressed in image builder #10 . This needs to be remove this line as part of the fix.
The text was updated successfully, but these errors were encountered: