shayktrust

Results 4 comments of shayktrust

Any updates? I'm encountering the same issue with RabbitMQ: ` Warning FailedMount 23s (x25 over 35m) kubelet MountVolume.SetUp failed for volume "certs" : references non-existent secret key: ca.crt`

Btw, you can use letsencrypt like the following: ``` apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-cluster-issuer spec: acme: server: https://acme-v02.api.letsencrypt.org/directory email: [email protected] privateKeySecretRef: name: letsencrypt-cluster-issuer-key solvers: - dns01: route53: region:...

@Thilip707 try the following command, this worked for me: ``` kubectl delete pvc -l app.kubernetes.io/name=etcd -n kubectl delete statefulset apisix-etcd -n ```

Hi @kworkbee , I am using Cluster Autoscaler, not Karpenter. Additionally, since I am implementing high availability, I have configured etcd to mount to EFS using a StorageClass. This setup...