Compare commits

..

5 Commits

Author SHA1 Message Date
Gitea Actions Bot
95c2f5f59f Auto-update README with current k8s applications
Some checks failed
Terraform / Terraform (pull_request) Failing after 23s
Generated by CI/CD workflow on 2026-03-17 14:49:30

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-17 14:49:30 +00:00
Ultradesu
b52676e8c7 Furumi: Added web ui with OIDC SSO
All checks were successful
Check with kubeconform / lint (push) Successful in 9s
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 14s
Auto-update README / Generate README and Create MR (push) Successful in 30s
2026-03-17 14:49:01 +00:00
Ultradesu
51fa410231 Furumi: Added web ui with OIDC SSO
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 10s
Check with kubeconform / lint (push) Successful in 11s
Auto-update README / Generate README and Create MR (push) Successful in 19s
2026-03-17 14:47:19 +00:00
Ultradesu
8e69b134a4 Furumi: Added web ui with OIDC SSO
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 13s
2026-03-17 14:43:40 +00:00
Ultradesu
ecb611cf5f Furumi: Added web ui with OIDC SSO
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 12s
Auto-update README / Generate README and Create MR (push) Successful in 24s
2026-03-17 14:42:59 +00:00
4 changed files with 54 additions and 4 deletions

View File

@@ -26,28 +26,30 @@ spec:
secretKeyRef:
name: furumi-ng-creds
key: TOKEN
- name: OIDC_CLIENT_ID
- name: FURUMI_OIDC_CLIENT_ID
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_CLIENT_ID
- name: OIDC_CLIENT_SECRET
- name: FURUMI_OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_CLIENT_SECRET
- name: OIDC_ISSUER_URL
- name: FURUMI_OIDC_ISSUER_URL
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_ISSUER_URL
- name: OIDC_REDIRECT_URL
- name: FURUMI_OIDC_REDIRECT_URL
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_REDIRECT_URL
- name: FURUMI_ROOT
value: "/media"
- name: RUST_LOG
value: "furumi_server=debug"
ports:
- name: grpc
containerPort: 50051
@@ -55,6 +57,9 @@ spec:
- name: metrics
containerPort: 9090
protocol: TCP
- name: web-ui
containerPort: 8080
protocol: TCP
volumeMounts:
- name: music
mountPath: /media

View File

@@ -0,0 +1,28 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: furumi-tls-ingress
annotations:
ingressClassName: traefik
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/router.middlewares: kube-system-https-redirect@kubernetescrd
acme.cert-manager.io/http01-edit-in-place: "true"
spec:
rules:
- host: music.hexor.cy
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: furumi-server-web
port:
number: 8080
tls:
- secretName: furumi-tls
hosts:
- '*.hexor.cy'

View File

@@ -7,3 +7,4 @@ resources:
- service.yaml
- servicemonitor.yaml
- external-secrets.yaml
- ingress.yaml

View File

@@ -28,3 +28,19 @@ spec:
protocol: TCP
port: 9090
targetPort: 9090
---
apiVersion: v1
kind: Service
metadata:
name: furumi-server-web
labels:
app: furumi-server
spec:
type: ClusterIP
selector:
app: furumi-server
ports:
- name: web-ui
protocol: TCP
port: 8080
targetPort: 8080