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

@@ -33,10 +33,34 @@ spec:
value: "0.0.0.0" value: "0.0.0.0"
- name: UVICORN_PORT - name: UVICORN_PORT
value: "8000" value: "8000"
- name: UVICORN_SSL_CERTFILE
value: "/etc/ssl/certs/tls.crt"
- name: UVICORN_SSL_KEYFILE
value: "/etc/ssl/private/tls.key"
ports: ports:
- name: http - name: http
containerPort: 8000 containerPort: 8000
protocol: TCP 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 apiVersion: v1
kind: Service kind: Service

View File

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