vscode-tekton
vscode-tekton copied to clipboard
connect to external clusters?
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?
I see i can mount a kubeconfig for external cluster in configmap and then use in my task. Was hoping to connect directly though
I can connect to an external cluster if my environment is set to connect to that cluster.
- Create a
mycluster.kubeconfigwhich 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.