Updates for v20+ and misc terraform bug fixes. Also refactored to use terraform variables instead of locals which helps with readability and ease of use for new users. Terraform validation is currently passing:  Additionally added [terraform-docs](https://terraform-docs.io/) to generate a more helpful README for terraform specific configuration. Raw K8s manifests were updated with changes for v20+ as well. --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: twentycrm-db
|
|
name: twentycrm-db
|
|
namespace: twentycrm
|
|
spec:
|
|
progressDeadlineSeconds: 600
|
|
replicas: 1
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 1
|
|
type: RollingUpdate
|
|
selector:
|
|
matchLabels:
|
|
app: twentycrm-db
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: twentycrm-db
|
|
spec:
|
|
volumes:
|
|
- name: twentycrm-db-data
|
|
persistentVolumeClaim:
|
|
claimName: twentycrm-db-pvc
|
|
containers:
|
|
- env:
|
|
- name: POSTGRES_PASSWORD
|
|
value: "twenty"
|
|
- name: BITNAMI_DEBUG
|
|
value: "true"
|
|
- image: twentycrm/twenty-postgres:latest
|
|
imagePullPolicy: Always
|
|
name: twentycrm
|
|
ports:
|
|
- containerPort: 5432
|
|
name: tcp
|
|
protocol: TCP
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "250m"
|
|
limits:
|
|
memory: "1024Mi"
|
|
cpu: "1000m"
|
|
stdin: true
|
|
tty: true
|
|
volumeMounts:
|
|
- mountPath: /bitnami/postgresql
|
|
name: twentycrm-db-data
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|