### Issue Summary The `service` name in the Kubernetes manifest for the PostgreSQL database is defined as `twentycrm-db`. However, the `DSN` configuration in the Server and Worker `deployments` incorrectly references `twenty-db`. This mismatch causes the pods to fail during initialization and crash on boot. ### Fix Description - Updated the `DSN` values in both the Server and Worker `deployments` to correctly reference `twentycrm-db`, ensuring alignment with the database `service` name. - Verified the deployments to ensure the pods start without issues after the fix. ### Testing - Deployed the updated manifests in a development environment. - Confirmed that both Server and Worker pods initialize correctly and connect to the database service as expected.
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: twentycrm-worker
|
|
name: twentycrm-worker
|
|
namespace: twentycrm
|
|
spec:
|
|
progressDeadlineSeconds: 600
|
|
replicas: 1
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 1
|
|
type: RollingUpdate
|
|
selector:
|
|
matchLabels:
|
|
app: twentycrm-worker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: twentycrm-worker
|
|
spec:
|
|
containers:
|
|
- name: twentycrm
|
|
image: twentycrm/twenty:latest
|
|
imagePullPolicy: Always
|
|
env:
|
|
- name: SERVER_URL
|
|
value: "https://crm.example.com:443"
|
|
- name: FRONT_BASE_URL
|
|
value: "https://crm.example.com:443"
|
|
- name: PG_DATABASE_URL
|
|
value: "postgres://postgres:postgres@twentycrm-db.twentycrm.svc.cluster.local/default"
|
|
- name: ENABLE_DB_MIGRATIONS
|
|
value: "false" # it already runs on the server
|
|
- name: STORAGE_TYPE
|
|
value: "local"
|
|
- name: "MESSAGE_QUEUE_TYPE"
|
|
value: "bull-mq"
|
|
- name: "CACHE_STORAGE_TYPE"
|
|
value: "redis"
|
|
- name: "REDIS_URL"
|
|
value: "redis://twentycrm-redis.twentycrm.svc.cluster.local:6379"
|
|
- name: APP_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: tokens
|
|
key: accessToken
|
|
command:
|
|
- yarn
|
|
- worker:prod
|
|
resources:
|
|
requests:
|
|
memory: "1024Mi"
|
|
cpu: "250m"
|
|
limits:
|
|
memory: "2048Mi"
|
|
cpu: "1000m"
|
|
stdin: true
|
|
tty: true
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|