Compare commits

..

4 Commits

Author SHA1 Message Date
gitea-admin f59bc33039 fix: add TLS certificate to whoami ingress
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-17 13:48:53 +00:00
gitea-admin 8a6d17c366 Merge pull request 'feat: create apps namespace' (#48) from orion/auto/feat-create-apps-namespace-1779025554970 into main
Reviewed-on: #48
2026-05-17 13:46:28 +00:00
gitea-admin d552a2b03a feat: create apps namespace
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-17 13:45:55 +00:00
gitea-admin f489715864 Merge pull request 'deploy whoami test server' (#47) from orion/auto/deploy-whoami-test-server-1779024941578 into main
Reviewed-on: #47
2026-05-17 13:37:04 +00:00
2 changed files with 24 additions and 10 deletions
+6
View File
@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: apps
labels:
name: apps
+18 -10
View File
@@ -3,16 +3,24 @@ kind: Ingress
metadata:
name: whoami
namespace: apps
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- hosts:
- whoami.khalisio.com
secretName: whoami-tls
rules:
- host: whoami.khalisio.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
name: http
- host: whoami.khalisio.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80