vscode-tekton icon indicating copy to clipboard operation
vscode-tekton copied to clipboard

connect to external clusters?

Open jmjava opened this issue 4 years ago • 2 comments

It would be helpful to be able to connect to EKS cluster running tekton. Is there any way to connect to external cluster vs kind etc?

jmjava avatar Oct 27 '21 13:10 jmjava

I see i can mount a kubeconfig for external cluster in configmap and then use in my task. Was hoping to connect directly though

jmjava avatar Oct 27 '21 14:10 jmjava

I can connect to an external cluster if my environment is set to connect to that cluster.

  • Create a mycluster.kubeconfig which has the connection information to your cluster.
  • Export the KUBECONFIG variable so it points to that file. export KUBECONFIG="/path/to/mycluster.kubeconfig"

After opening VSCode, the extension lists the content on my external cluster.

Roming22 avatar Jun 15 '23 09:06 Roming22