diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-15 16:02:02 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-15 16:02:02 +0200 |
commit | 7b404a6d2321f27e9a808aca267bf8f9e4e681aa (patch) | |
tree | 472003eba97e891d68b241254531bb07033e810e /k8s/postgres-deployment.yaml | |
parent | 02e41bc8e457ffb6a96e8ae551f172df8140c578 (diff) |
Remove K8s stuff
Diffstat (limited to 'k8s/postgres-deployment.yaml')
-rw-r--r-- | k8s/postgres-deployment.yaml | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/k8s/postgres-deployment.yaml b/k8s/postgres-deployment.yaml deleted file mode 100644 index fd9945f..0000000 --- a/k8s/postgres-deployment.yaml +++ /dev/null @@ -1,38 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: postgres-deployment -spec: - replicas: 1 - selector: - matchLabels: - app: postgres - template: - metadata: - labels: - app: postgres - spec: - containers: - - name: postgres - image: postgis/postgis:16-3.4 - env: - - name: POSTGRES_USER - value: "postgres" - - name: POSTGRES_PASSWORD - value: "password" - - name: POSTGRES_DB - value: "gis" - ports: - - containerPort: 5432 - volumeMounts: - - mountPath: /var/lib/postgresql/data - name: pgdata - - mountPath: /docker-entrypoint-initdb.d - name: schema - volumes: - - name: pgdata - persistentVolumeClaim: - claimName: pgdata-pvc - - name: schema - hostPath: - path: ${PGDATA} |