Skip to content

Commit e963c31

Browse files
committed
re-add nginx pod
1 parent 8228b58 commit e963c31

File tree

4 files changed

+13
-63
lines changed

4 files changed

+13
-63
lines changed

argocd/ctrl_plane/dev/auth-proxy-nginx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
node_pool: observability-resources
2121
serverBlock: |-
2222
server {
23-
listen 80;
23+
listen 3000;
2424
server_name grafana.dev.falkordb.cloud;
2525
2626
location = /grafana/login {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: auth-proxy-nginx
5+
namespace: customer-observability
6+
spec:
7+
selector:
8+
app.kubernetes.io/name: nginx
9+
ports:
10+
- port: 80
11+
targetPort: 3000
12+
type: LoadBalancer

argocd/ctrl_plane/dev/manifests/nginx-ingress.yaml

-59
This file was deleted.

frontend/apps/auth-proxy/lib/authOptions.ts

-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,4 @@ export const authOptions: AuthOptions = {
5555
name: "token",
5656
},
5757
},
58-
jwt: {
59-
secret: process.env.NEXTAUTH_JWT_SECRET,
60-
},
6158
};

0 commit comments

Comments
 (0)