Joeydelarago commented on issue #11338:
URL: https://github.com/apache/apisix/issues/11338#issuecomment-2552935507
This issue started occurring again for me, so I ended up installing etcd
separately.
I installed etcd. I only updated the etcd values.yaml to increase the
replication factor from 1 -> 3
```
helm install etcd-apisix bitnami/etcd \
--namespace <NAMESPACE> \
--values etcd-values.yaml
```
Then I updated the apisix values.yaml and did a helm upgrade apisix.
```
externalEtcd:
host:
- http://etcd-apisix.<NAMESPACE>.svc.cluster.local:2379
user: root
existingSecret: "etcd-apisix"
secretPasswordKey: "etcd-root-password"
...
etcd:
enabled: false
```
My solution for the issue is still the same as I mentioned above. Helm
uninstall, delete etcd PVC, helm reinstall. However, with etcd separated, this
can be done without taking down apisix.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]