Steven Armstrong
Steven Armstrong
I'm using kopf to write a dynamic Persistent Volume provisioner for ZFS ([zfs-provisioner](https://github.com/asteven/zfs-provisioner/)). I am basically rewriting my [local-zfs-provisioner](https://github.com/asteven/local-zfs-provisioner) from golang to python because the upstream go libs have some...
FTR: I'm [working on a PR](/asteven/one/tree/bug-3768). Seems to work so far, but want to test some more before submitting it.
So a bunch of problems here. And questions to upstream. There's roughly 90 places where the `virsh` executable is used/called throughout the ONE codebase. Basically from within vnm_mad, tm_mad, im_mad,...
Example script for $SCRIPTS_REMOTE_DIR/bin/virsh ``` #!/bin/sh remove_from_path() { # Remove the given directory from the PATH. PATH="${PATH//":$1:"/":"}" # delete any instances in the middle PATH="${PATH/#"$1:"/}" # delete any instance at...
Then call the script one-virsh or whatever. Why would you want to depend on a env variable that is defined in some shell script/rc file in one mad from all...
> Came to say doing this fixed an issue in k8s v1.17.2 where kube-router was trying to connect to the cluster IP for the API. Using the manifest above, I...
> I think in the end, it is correct for kube-router to assume that this configmap is provided for us. I think that the best way forward would be if...
With this patch I don't need the kube-proxy config map anymore. I basically use some shell code in the init container to generate a working kubeconfig for the main container...
Sorry, I thought the solution was self explaining. The kubelet talks to the API server via the external IP, not the internal one (ClusterIP). That's why it can work even...
@kvaps that was also [my first thought](https://github.com/cloudnativelabs/kube-router/issues/859#issuecomment-625501071). But to where should kubectl connect to get that info? This is exactly the chicken vs egg problem.