Hello people, Since upgrading Rancher server I se...
# general
g
Hello people, Since upgrading Rancher server I see is no longer possible to create API Keys without expiration. Is there a way around this? I mostly used the keys to register clusters into an ArgoCD installation. I did it by creating a secret as follow, should I do it in some other way?:
Copy code
kind: Secret
metadata:
  namespace: argocd
  name: mycluster
  labels:
    <http://argocd.argoproj.io/secret-type|argocd.argoproj.io/secret-type>: cluster
type: Opaque
stringData:
  name: mycluster
  server: <https://myrancher.com/k8s/clusters/c-m-123abcd>
  config: |
    {
      "bearerToken": "my-api-key-here",
      "tlsClientConfig": {
        "insecure": false
      }
    }