wofr commented on issue #8036:
URL: https://github.com/apache/apisix/issues/8036#issuecomment-1288478761
I now did a deticated deployment of an etcd cluster using ArgoCD, and it
appears there seems to be a problem with GKE and etcd at least in the way I do
the deployment.
I will close this issue and create an issue on the etcd github
```
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: etcd
# namespace of the argo-cd server
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
annotations:
# Ensure infrastructre is deployed first (before the services)
argocd.argoproj.io/sync-wave: "-4"
#avp.kubernetes.io/path: "secret/scott/<PROJECT_NAME>/backend"
spec:
destination:
namespace: etcd
server: {{ .Values.spec.destination.cluster }}
project: tracs
source:
chart: etcd
repoURL: https://charts.bitnami.com/bitnami
targetRevision: "8.5.7"
helm:
parameters:
- name: "replicaCount"
value: "3"
- name: auth.rbac.rootPassword
# Adapt and make secure
value: "root"
syncPolicy:
automated:
selfHeal: true
prune: true
allowEmpty: true
syncOptions: # Sync options which modifies sync behavior
- CreateNamespace=true # Namespace Auto-Creation ensures that namespace
specified as the application destination exists in the destination cluster.
```
--
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]