feat(infra): update Homarr dashboard to v1.68.0 and align manifests

- Update container image to ghcr.io/homarr-labs/homarr:v1.68.0
- Change namespace from services to homarr across deployment, service, and pvc
- Set volume mount path to /appdata and storage capacity to 2Gi with local-path
- Inject OIDC environment variables for SSO authentication

Build: 0 jobs, 0 errors
This commit is contained in:
allaun 2026-06-29 09:31:52 -05:00
parent fc84c98253
commit 0fe50b4840
3 changed files with 25 additions and 6 deletions

View file

@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: homarr name: homarr
namespace: services namespace: homarr
labels: labels:
app: homarr app: homarr
spec: spec:
@ -17,18 +17,33 @@ spec:
spec: spec:
containers: containers:
- name: homarr - name: homarr
image: ghcr.io/homarr-labs/homarr:v1.62.0 image: ghcr.io/homarr-labs/homarr:v1.68.0
ports: ports:
- containerPort: 7575 - containerPort: 7575
volumeMounts: volumeMounts:
- name: data - name: data
mountPath: /app/data mountPath: /appdata
env: env:
- name: HOMARR_ALLOW_ANALYTICS - name: HOMARR_ALLOW_ANALYTICS
value: "false" value: "false"
- name: SECRET_ENCRYPTION_KEY - name: SECRET_ENCRYPTION_KEY
value: "93776b84d86fbc810709cf7cf9b243afbb2b9cb19603af8b1a696373467dc583" value: "93776b84d86fbc810709cf7cf9b243afbb2b9cb19603af8b1a696373467dc583"
- name: AUTH_PROVIDERS
value: "credentials,oidc"
- name: AUTH_OIDC_CLIENT_ID
value: "sso-homarr"
- name: AUTH_OIDC_CLIENT_SECRET
value: "2e1170ceb4589ca7f67e78b8460ed573c55e26d8cba5a1921b861fff905557da"
- name: AUTH_OIDC_ISSUER
value: "https://auth.researchstack.info/application/o/homarr/"
- name: AUTH_OIDC_URI
value: "https://auth.researchstack.info/application/o/authorize/"
- name: AUTH_OIDC_CLIENT_NAME
value: "Authentik"
- name: AUTH_OIDC_AUTO_LOGIN
value: "true"
volumes: volumes:
- name: data - name: data
persistentVolumeClaim: persistentVolumeClaim:
claimName: homarr-data claimName: homarr-data

View file

@ -2,10 +2,13 @@ apiVersion: v1
kind: PersistentVolumeClaim kind: PersistentVolumeClaim
metadata: metadata:
name: homarr-data name: homarr-data
namespace: services namespace: homarr
spec: spec:
accessModes: accessModes:
- ReadWriteOnce - ReadWriteOnce
resources: resources:
requests: requests:
storage: 1Gi storage: 2Gi
storageClassName: local-path

View file

@ -2,7 +2,7 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: homarr name: homarr
namespace: services namespace: homarr
spec: spec:
type: NodePort type: NodePort
selector: selector:
@ -11,3 +11,4 @@ spec:
- port: 7575 - port: 7575
targetPort: 7575 targetPort: 7575
nodePort: 30805 nodePort: 30805