apiVersion: apps/v1 kind: Deployment metadata: name: homepage labels: app.kubernetes.io/controller: main app.kubernetes.io/instance: homepage app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: homepage helm.sh/chart: homepage-5.0.0 annotations: reloader.stakater.com/auto: "true" namespace: homepage spec: revisionHistoryLimit: 3 replicas: 1 strategy: type: Recreate selector: matchLabels: app.kubernetes.io/controller: main app.kubernetes.io/name: homepage app.kubernetes.io/instance: homepage template: metadata: annotations: checksum/configMaps: 3961d0f5ae725dd1e304dac409388ca1912e656ddf41fdd298c1ee2fc404bbc3 labels: app.kubernetes.io/controller: main app.kubernetes.io/instance: homepage app.kubernetes.io/name: homepage spec: enableServiceLinks: false serviceAccountName: homepage automountServiceAccountToken: true hostIPC: false hostNetwork: false hostPID: false dnsPolicy: ClusterFirst containers: - env: - name: HOMEPAGE_ALLOWED_HOSTS value: home.alexlebens.net envFrom: - secretRef: name: homepage-secrets image: ghcr.io/gethomepage/homepage:v1.13.1@sha256:d8d784e5090111b6e4c56dfd90e272d2953a2094e87349f647165df0fa6c4401 name: main resources: requests: cpu: 1m memory: 128Mi volumeMounts: - mountPath: /app/config/custom.css mountPropagation: None name: config readOnly: true subPath: custom.css - mountPath: /app/config/docker.yaml mountPropagation: None name: config readOnly: true subPath: docker.yaml - mountPath: /app/config/kubernetes.yaml mountPropagation: None name: config readOnly: true subPath: kubernetes.yaml - mountPath: /app/config/settings.yaml mountPropagation: None name: config readOnly: true subPath: settings.yaml - mountPath: /app/config/widgets.yaml mountPropagation: None name: config readOnly: true subPath: widgets.yaml - mountPath: /app/config/services.yaml mountPropagation: None name: config readOnly: true subPath: services.yaml - mountPath: /app/config/bookmarks.yaml mountPropagation: None name: config readOnly: true subPath: bookmarks.yaml volumes: - configMap: name: homepage name: config