Skip to content

Commit

Permalink
Switch to correct Redis port (argoproj#1143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lev Aminov authored and alexmt committed Feb 19, 2019
1 parent d555245 commit 1770fb2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const (
// DefaultDexServerAddr is the HTTP address of the Dex OIDC server, which we run a reverse proxy against
DefaultDexServerAddr = "http://argocd-dex-server:5556"
// DefaultRedisAddr is the default redis address
DefaultRedisAddr = "argocd-redis:3679"
DefaultRedisAddr = "argocd-redis:6379"
)

// Kubernetes ConfigMap and Secret resource names which hold Argo CD settings
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/redis/argocd-redis-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
spec:
ports:
- name: tcp-redis
port: 3679
port: 6379
targetPort: 6379
selector:
app.kubernetes.io/component: redis
2 changes: 1 addition & 1 deletion manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ metadata:
spec:
ports:
- name: tcp-redis
port: 3679
port: 6379
targetPort: 6379
selector:
app.kubernetes.io/component: redis
Expand Down
2 changes: 1 addition & 1 deletion manifests/namespace-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ metadata:
spec:
ports:
- name: tcp-redis
port: 3679
port: 6379
targetPort: 6379
selector:
app.kubernetes.io/component: redis
Expand Down

0 comments on commit 1770fb2

Please sign in to comment.