Ahmet Alp Balkan
Ahmet Alp Balkan
More in line with `create-firewall` and `delete-firewall`. Prefer verbosity over saving a character.
First time I ran `kubehost -h` these commands confused me: ``` create-firewall : Create a GCP firewall rule for the hostPort deployment created with 'bind'. delete-firewall : Delete a GCP...
I understand kubehost just shells out to kubectl. So technically user just do `kubectl config set-context [...] --namespace=foo` prior to running kubehost. But it would be better if kubehost supported...
It seems like `kubehost bind` always binds to port 80. As far as I can tell, this prevents kubehost to be used with multiple exposed services at once (#2) as...
I'm trying to implement a very simple "kubectl get" using [pkg/genericclioptions](https://godoc.org/k8s.io/cli-runtime/pkg/genericclioptions). In my command, I see `--namespace` option registered. When I invoke my command, I don't specify any value for...
It should be possible to easily spin-up grpc servers in-memory for tests and exercise probing capabilities. It can be either execing out to a binary, or we could export the...
@soltysh has brought up this idea: why don't we have also include a Krew (https://sigs.k8s.io/krew) plugin manifest in this plugin sample? To do this, we would need to: 1. Provide...
I am a newcomer to the ecosystem and I cannot tell when to use https://github.com/kubernetes/code-generator/blob/master/generate-groups.sh, https://github.com/kubernetes/code-generator/blob/master/hack/update-codegen.sh or https://github.com/kubernetes-sigs/controller-tools/tree/master/cmd/controller-gen For example `controller-gen` can do deepcopy generation, and so can https://github.com/kubernetes/code-generator/tree/master/cmd/deepcopy-gen. Similarly,...
When I apply a network policy, `Service.type=LoadBalancer` restricting all pod-to-pod traffic, it keeps working for a while, and a few minutes later it stops working. Once I remove network policy,...