Peter Sutter

Results 90 comments of Peter Sutter

I just created a proposal for the ssh controller task in a separate issue which can be discussed here ~~https://github.com/gardener/gardenctl/issues/508~~ https://github.com/gardener/gardenctl/issues/510

Hi @neo-liang-sap , - In general, if you are only interested in one shoot and you have the namespace and name of the shoot, as you do in this case,...

> name: devaws kubeConfig: ~/.kube/iotdevk8s--devawsk8s-cluster-admin.yaml dashboardUrl: http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/ `gardenctl` needs to be configured with the (virtual) garden kubeconfig, that you can download from the gardener dashboard. You have two options: -...

> [#263 (comment)](https://github.com/gardener/gardenctl/pull/263#discussion_r473270079) somehow this link does not work for me, hence I copy the content here: The if-else blocks in the middle of this function looks like a lot...

@vpnachev I really like the idea of using the `machine.sapcloud.io/v1alpha1.Machine` resource to manage SSH access to the VMs or maybe even have a dedicated CRD with an own controller that...

> I overall agree with @vpnachev @petersutter. > > A minor variant to what is proposed could be, we simply create a dedicated `bastion` MachineDeployment with PubilcIPs enabled[via classes]. So...

@tedteng before you start with the implementation, can you please share an example of such a `bastion-machine` CR? And also share an example of the `MachineDeployment` CR that you would...

Hi @tedteng , I don't think that we want to get rid of accessing the node via ssh. Also, the link to the documentation does not describe ssh access to...

/reopen is every occurence really fixed now? ```go func ExecCmd(input []byte, cmd string, suppressedOutput bool, environment ...string) (err error) { var command *exec.Cmd parts := strings.Fields(cmd) head := parts[0] if...

don't think that this issue is already done. the operate function is still called with a string parameter, and not with an array ```go func operate(provider, arguments string) string {...