This message was deleted.
# rancher-desktop
a
This message was deleted.
q
The standard service account model should work for what you need. You can see an example here: https://app.cnvrg.io/docs/guides/ssh.html#edit-your-local-kubeconfig. Just be aware that the example limits access just to resources of type pod, so just adapt it for your specific needs. Hope it helps.
👍 1
g
Thanks Juan !
the given page by Juan had some errors at this steps: 1. append to permissions.yaml following lines --- apiVersion: v1 kind: Secret metadata: name: cnvrg-port-secret annotations: kubernetes.io/service-account.name: cnvrg-port- type: kubernetes.io/service-account-token --- 2. use kubectl -n kube-system apply -f permissions.yaml --- Retrieve the access token. use kubectl -n kube-system describe secret $(kubectl -n kube-system get serviceaccount | grep cnvrg-port- | awk '{print $1}')| grep token:
👍 2
q
Thanks for the fixes. They'll be helpful for anyone else with the same needs.