I want to change the Kubernetes Pod Ips, because we have in our company a subnet which runs on the same subnet as kubernetes.
I created a kubernetes-config file with this content (just a snipped):
kind: ClusterConfiguration
kubernetesVersion: v1.13.4
networking:
dnsDomain: cluster.local
podSubnet: "192.150.0.0/19"
serviceSubnet: 192.150.0.0/19
scheduler: {}
Then I start the Weave Net with the extra argument IPALLOC_RANGE 192.150.0.0/19.
The Pods have the right ip-addresses within this pool, but I cant connet to the pods from in the cluster to each other and not outside the cluster. So we have servers outside of the kubernetes cluster which I also cant connect to.