Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot
df1bb74818 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 33s
Generated by CI/CD workflow on 2026-03-17 14:35:50

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-17 14:35:50 +00:00
4 changed files with 4 additions and 54 deletions

View File

@@ -26,30 +26,28 @@ spec:
secretKeyRef:
name: furumi-ng-creds
key: TOKEN
- name: FURUMI_OIDC_CLIENT_ID
- name: OIDC_CLIENT_ID
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_CLIENT_ID
- name: FURUMI_OIDC_CLIENT_SECRET
- name: OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_CLIENT_SECRET
- name: FURUMI_OIDC_ISSUER_URL
- name: OIDC_ISSUER_URL
valueFrom:
secretKeyRef:
name: furumi-ng-creds
key: OIDC_ISSUER_URL
- name: FURUMI_OIDC_REDIRECT_URL
- name: 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
@@ -57,9 +55,6 @@ spec:
- name: metrics
containerPort: 9090
protocol: TCP
- name: web-ui
containerPort: 8080
protocol: TCP
volumeMounts:
- name: music
mountPath: /media

View File

@@ -1,28 +0,0 @@
---
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,4 +7,3 @@ resources:
- service.yaml
- servicemonitor.yaml
- external-secrets.yaml
- ingress.yaml

View File

@@ -28,19 +28,3 @@ 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