deleted: apps/outline/Chart.yaml

modified:   apps/outline/VAULT_SETUP.md
	new file:   apps/outline/dependencies.yaml
	new file:   apps/outline/deployment.yaml
	new file:   apps/outline/ingress.yaml
	deleted:    apps/outline/values.yaml
This commit is contained in:
Ubuntu
2026-01-12 15:50:05 +00:00
parent 04e8701b10
commit b412e3abad
6 changed files with 179 additions and 79 deletions

View File

@@ -0,0 +1,97 @@
---
# REDIS
apiVersion: apps/v1
kind: Deployment
metadata:
name: outline-redis
namespace: outline
spec:
replicas: 1
selector:
matchLabels:
app: outline-redis
template:
metadata:
labels:
app: outline-redis
spec:
containers:
- name: redis
image: redis:alpine
command: ["redis-server", "--requirepass", "$(REDIS_PASSWORD)"]
ports:
- containerPort: 6379
env:
- name: REDIS_PASSWORD
valueFrom:
secretKeyRef:
name: outline-secrets
key: redis-password
---
apiVersion: v1
kind: Service
metadata:
name: outline-redis
namespace: outline
spec:
ports:
- port: 6379
targetPort: 6379
selector:
app: outline-redis
---
# POSTGRES
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: outline-postgres
namespace: outline
spec:
serviceName: outline-postgres
replicas: 1
selector:
matchLabels:
app: outline-postgres
template:
metadata:
labels:
app: outline-postgres
spec:
containers:
- name: postgres
image: postgres:15-alpine
ports:
- containerPort: 5432
env:
- name: POSTGRES_DB
value: outline
- name: POSTGRES_USER
value: outline
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: outline-secrets
key: postgres-password
volumeMounts:
- name: postgres-data
mountPath: /var/lib/postgresql/data
volumeClaimTemplates:
- metadata:
name: postgres-data
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 5Gi
---
apiVersion: v1
kind: Service
metadata:
name: outline-postgres
namespace: outline
spec:
ports:
- port: 5432
targetPort: 5432
selector:
app: outline-postgres