workignn on getting cert manager up to snuff

This commit is contained in:
2025-01-13 22:23:24 -07:00
parent 1458dfe23b
commit 92b2bb78c0
7 changed files with 99 additions and 24 deletions

View File

@@ -2,16 +2,16 @@ apiVersion: apps/v1
kind: Deployment
metadata:
namespace: projects
name: gitea_db
name: gitea-db
spec:
replicas: 1
selector:
matchLabels:
app: gitea_db
app: gitea-db
template:
metadata:
labels:
app: gitea_db
app: gitea-db
spec:
containers:
- name: postgres
@@ -22,7 +22,7 @@ spec:
- name: POSTGRES_USER
value: "gitea"
- name: POSTGRES_PASSWORD
value: "${POSTGRES_PASSWORD}"
value: wauiofnasufnweaiufbsdklfjb23456
- name: POSTGRES_DB
value: "gitea"
volumeMounts:
@@ -37,15 +37,15 @@ spec:
apiVersion: v1
kind: Service
metadata:
name: gitea_db
name: gitea-db-svc
namespace: projects
labels:
app: gitea_db
app: gitea-db
spec:
ports:
- protocol: TCP
port: 5432
targetPort: 5432
selector:
app: gitea_db
app: gitea-db
type: ClusterIP