fix: update admin port to 3000

This commit is contained in:
Seth Call 2026-03-09 23:54:15 -05:00
parent b5890bdd62
commit b47db96911
1 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ spec:
# This will be replaced by the Dagger build pipeline on first run
image: git.staging.jamkazam.com/seth/jam-cloud-admin:latest
ports:
- containerPort: 8080
- containerPort: 3000
env:
- name: RAILS_ENV
value: "production"
@ -40,9 +40,9 @@ spec:
readinessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 10
periodSeconds: 5
port: 3000
initialDelaySeconds: 30
periodSeconds: 10
---
apiVersion: v1
kind: Service
@ -55,7 +55,7 @@ spec:
ports:
- protocol: TCP
port: 80
targetPort: 8080
targetPort: 3000
---
apiVersion: networking.k8s.io/v1
kind: Ingress