Compare commits

..

4 Commits

Author SHA1 Message Date
Gitea Actions Bot a850277002 Auto-update README with current k8s applications
Terraform / Terraform (pull_request) Failing after 18s
Generated by CI/CD workflow on 2026-03-17 14:47:55

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-17 14:47:55 +00:00
Ultradesu 51fa410231 Furumi: Added web ui with OIDC SSO
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
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
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 52 additions and 4 deletions
+7 -4
View File
@@ -26,22 +26,22 @@ 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
@@ -55,6 +55,9 @@ spec:
- name: metrics
containerPort: 9090
protocol: TCP
- name: web-ui
containerPort: 8080
protocol: TCP
volumeMounts:
- name: music
mountPath: /media
+28
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'
@@ -7,3 +7,4 @@ resources:
- service.yaml
- servicemonitor.yaml
- external-secrets.yaml
- ingress.yaml
+16
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