You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to v2.0.3 the deployment.apps/argocd-redis was failing to successfully create the redis pod because it wasn't able to bind the socket. A similar issue for the HA version was raised in this #5957
To Reproduce
Deploy non-ha ArgoCD v2.0.3 to a Kubernetes cluster (TKGI) with IPv6 disabled.
Expected behavior
Redis pod to successfully bind the socket.
Logs
# Could not create server TCP listening socket ::*:6379: unable to bind socket, errno: 97
Looking further at the Changelog, Redis reached 6.2.4 meanwhile with some important fixes. So probably worthwhile to include an update to 6.2.4 in the next patch release of Argo CD v2.0 branch.
argocd version
.Describe the bug
After upgrading to v2.0.3 the
deployment.apps/argocd-redis
was failing to successfully create the redis pod because it wasn't able to bind the socket. A similar issue for the HA version was raised in this #5957To Reproduce
Deploy non-ha ArgoCD v2.0.3 to a Kubernetes cluster (TKGI) with IPv6 disabled.
Expected behavior
Redis pod to successfully bind the socket.
Logs
# Could not create server TCP listening socket ::*:6379: unable to bind socket, errno: 97
Workaround
I had to manually add
--bind 0.0.0.0
to the args of theargocd-redis deployment
https://github.com/argoproj/argo-cd/blob/master/manifests/install.yaml#L3099-L3105
The text was updated successfully, but these errors were encountered: