Compare commits

...

2 Commits

Author SHA1 Message Date
AB
45b49944b3 Merge branch 'main' of ssh://gt.hexor.cy:30022/ab/homelab
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 11s
Check with kubeconform / lint (push) Successful in 13s
2025-11-05 15:50:11 +02:00
AB
bd8caa57bf Added pasarguard 2025-11-05 15:50:00 +02:00
2 changed files with 27 additions and 2 deletions

View File

@@ -29,14 +29,38 @@ spec:
- secretRef:
name: pasarguard-secrets
env:
- name: UVICORN_HOST
- name: UVICORN_HOST
value: "0.0.0.0"
- name: UVICORN_PORT
- name: UVICORN_PORT
value: "8000"
- name: UVICORN_SSL_CERTFILE
value: "/etc/ssl/certs/tls.crt"
- name: UVICORN_SSL_KEYFILE
value: "/etc/ssl/private/tls.key"
ports:
- name: http
containerPort: 8000
protocol: TCP
volumeMounts:
- name: tls-certs
mountPath: /etc/ssl/certs
readOnly: true
- name: tls-keys
mountPath: /etc/ssl/private
readOnly: true
volumes:
- name: tls-certs
secret:
secretName: pasarguard-tls
items:
- key: tls.crt
path: tls.crt
- name: tls-keys
secret:
secretName: pasarguard-tls
items:
- key: tls.key
path: tls.key
---
apiVersion: v1
kind: Service

View File

@@ -6,5 +6,6 @@ resources:
- ./external-secrets.yaml
- ./deployment.yaml
- ./daemonset.yaml
- ./certificate.yaml