feat(synapse): update ingress to use traefik ingress class and bump version feat(syncthing-discovery): introduce syncthing discovery service with deployment and ingress feat(syncthing-relay): add syncthing relay server with deployment and ingress configuration fix(taiga): update liveness and readiness probes to use tcpSocket for health checks fix(taiga): change PVC access mode to ReadWriteMany for media and static storage feat(traefik): add icon and ignore rules for traefik service docs(ushahidi): add notes for Redis configuration and Laravel startup probe adjustments feat(ushahidi): implement dedicated Redis deployment for Ushahidi fix(vllm): update deployment strategy and readiness/liveness probes for improved stability fix(writefreely): pin writefreely image version to v0.15.1 for consistency docs(zulip): add notes for TLS-terminating reverse proxy configuration and expected behavior
109 lines
2.8 KiB
YAML
109 lines
2.8 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: loomio-worker
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
component: worker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: worker
|
|
spec:
|
|
securityContext:
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
containers:
|
|
- name: worker
|
|
image: loomio/loomio:3.0.24
|
|
env:
|
|
- name: TASK
|
|
value: worker
|
|
- name: RAILS_ENV
|
|
value: production
|
|
- name: SITE_NAME
|
|
value: {{ .appName }}
|
|
- name: CANONICAL_HOST
|
|
value: {{ .domain }}
|
|
- name: PUBLIC_APP_URL
|
|
value: https://{{ .domain }}
|
|
- name: SUPPORT_EMAIL
|
|
value: {{ .supportEmail }}
|
|
- name: DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: loomio-secrets
|
|
key: dbUrl
|
|
- name: REDIS_URL
|
|
value: {{ .redisUrl }}
|
|
- name: DEVISE_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: loomio-secrets
|
|
key: deviseSecret
|
|
- name: SECRET_COOKIE_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: loomio-secrets
|
|
key: secretCookieToken
|
|
- name: ACTIVE_STORAGE_SERVICE
|
|
value: local
|
|
- name: SMTP_AUTH
|
|
value: {{ .smtp.auth }}
|
|
- name: SMTP_DOMAIN
|
|
value: {{ .smtp.domain }}
|
|
- name: SMTP_SERVER
|
|
value: {{ .smtp.host }}
|
|
- name: SMTP_PORT
|
|
value: "{{ .smtp.port }}"
|
|
- name: SMTP_USERNAME
|
|
value: {{ .smtp.user }}
|
|
- name: SMTP_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: loomio-secrets
|
|
key: smtpPassword
|
|
- name: SMTP_USE_SSL
|
|
value: "{{ .smtp.tls }}"
|
|
- name: REPLY_HOSTNAME
|
|
value: {{ .smtp.from }}
|
|
- name: BUNDLE_APP_CONFIG
|
|
value: /loomio/tmp/.bundle
|
|
volumeMounts:
|
|
- name: uploads
|
|
mountPath: /loomio/public/system
|
|
- name: storage
|
|
mountPath: /loomio/storage
|
|
- name: tmp
|
|
mountPath: /loomio/tmp
|
|
- name: log
|
|
mountPath: /loomio/log
|
|
resources:
|
|
requests:
|
|
memory: 256Mi
|
|
cpu: 50m
|
|
limits:
|
|
memory: 1Gi
|
|
cpu: 500m
|
|
securityContext:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop: [ALL]
|
|
readOnlyRootFilesystem: false
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
volumes:
|
|
- name: uploads
|
|
persistentVolumeClaim:
|
|
claimName: loomio-uploads
|
|
- name: storage
|
|
persistentVolumeClaim:
|
|
claimName: loomio-storage
|
|
- name: tmp
|
|
emptyDir: {}
|
|
- name: log
|
|
emptyDir: {} |