long story short, according to this I need to disable the RemoveSelfLink
feature from the API server.
I was therefore trying to do so via Kubeadm's ClusterConfiguration
with something like the following:
kind: ClusterConfiguration
apiVersion: kubeadm.k8s.io/v1beta2
clusterName: ecobnb-staging
controlPlaneEndpoint: 49.12.22.67
networking:
podSubnet: 10.244.0.0/16
apiServer:
extraArgs:
feature-gates: "removeSelfLink=false"
This does not seem to work as kubeadm times out. This might be because, in the K8s docs, the RemoveSelfLink
was removed in v1.19.
Any idea how to work around this? Thanks a lot!
Edit : Kubernetes and kubeadm versions are both 1.21.1