diff --git a/apps/charts/data/Chart.yaml b/apps/charts/data/Chart.yaml deleted file mode 100644 index 339c647..0000000 --- a/apps/charts/data/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: data diff --git a/apps/charts/data/templates/database.yaml b/apps/charts/data/templates/database.yaml deleted file mode 100644 index 6a30b53..0000000 --- a/apps/charts/data/templates/database.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: PostgresDatabase -metadata: - name: '{{ .Release.Name }}' -spec: - environment: '{{ .Values.globals.environment }}' diff --git a/apps/charts/data/values.yaml b/apps/charts/data/values.yaml deleted file mode 100644 index 0967ef4..0000000 --- a/apps/charts/data/values.yaml +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/apps/charts/linkwarden.disabled/Chart.yaml b/apps/charts/linkwarden.disabled/Chart.yaml deleted file mode 100644 index bf40913..0000000 --- a/apps/charts/linkwarden.disabled/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: Linkwarden diff --git a/apps/charts/linkwarden.disabled/templates/client.yaml b/apps/charts/linkwarden.disabled/templates/client.yaml deleted file mode 100644 index 7fbff6e..0000000 --- a/apps/charts/linkwarden.disabled/templates/client.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: OidcClient -metadata: - name: "{{ .Release.Name }}" -spec: - environment: "{{ .Values.globals.environment }}" - redirectUris: - - path: /api/v1/auth/callback/authentik - subdomain: "{{ .Values.subdomain }}" - matchingMode: strict diff --git a/apps/charts/linkwarden.disabled/templates/database.yaml b/apps/charts/linkwarden.disabled/templates/database.yaml deleted file mode 100644 index 6a30b53..0000000 --- a/apps/charts/linkwarden.disabled/templates/database.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: PostgresDatabase -metadata: - name: '{{ .Release.Name }}' -spec: - environment: '{{ .Values.globals.environment }}' diff --git a/apps/charts/linkwarden.disabled/templates/deployment.yaml b/apps/charts/linkwarden.disabled/templates/deployment.yaml deleted file mode 100644 index 774e481..0000000 --- a/apps/charts/linkwarden.disabled/templates/deployment.yaml +++ /dev/null @@ -1,76 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - replicas: 1 - revisionHistoryLimit: 0 - selector: - matchLabels: - app: "{{ .Release.Name }}" - template: - metadata: - labels: - app: "{{ .Release.Name }}" - spec: - containers: - - name: "{{ .Release.Name }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - ports: - - containerPort: 3000 - name: http - env: - - name: TZ - value: "{{ .Values.globals.timezone }}" - - name: NEXTAUTH_URL - value: "https://{{ .Values.subdomain }}.{{ .Values.globals.domain }}/api/v1/auth" - - name: NEXT_PUBLIC_OLLAMA_ENDPOINT_URL - value: "http://ollama:80" - - name: OLLAMA_MODEL - value: phi3:mini-4k - - name: DATABASE_URL - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: url - - name: NEXTAUTH_SECRET - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-secrets" - key: nextauth - - name: NEXT_PUBLIC_DISABLE_REGISTRATION - value: "true" - - name: NEXT_PUBLIC_CREDENTIALS_ENABLED - value: "false" - - name: DISABLE_NEW_SSO_USERS - value: "false" - - name: NEXT_PUBLIC_AUTHENTIK_ENABLED - value: "true" - - name: AUTHENTIK_CLIENT_ID - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientId - - name: AUTHENTIK_CLIENT_SECRET - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientSecret - - name: AUTHENTIK_ISSUER - value: "https://authentik.{{ .Values.globals.domain }}/application/o/linkwarden" - # TODO: - # - name: AUTHENTIK_ISSUER - # valueFrom: - # secretKeyRef: - # name: "{{ .Release.Name }}-client" - # key: configurationIssuer - volumeMounts: - - mountPath: /data/data - name: data - volumes: - - name: data - persistentVolumeClaim: - claimName: "{{ .Release.Name }}-data" diff --git a/apps/charts/linkwarden.disabled/templates/pvc.yaml b/apps/charts/linkwarden.disabled/templates/pvc.yaml deleted file mode 100644 index bc1d0a6..0000000 --- a/apps/charts/linkwarden.disabled/templates/pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: '{{ .Release.Name }}-data' -spec: - accessModes: - - 'ReadWriteOnce' - resources: - requests: - storage: '1Gi' - storageClassName: '{{ .Values.globals.environment }}' diff --git a/apps/charts/linkwarden.disabled/templates/secret.yaml b/apps/charts/linkwarden.disabled/templates/secret.yaml deleted file mode 100644 index cd7bee9..0000000 --- a/apps/charts/linkwarden.disabled/templates/secret.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: GenerateSecret -metadata: - name: "{{ .Release.Name }}-secrets" -spec: - fields: - - name: nextauth - encoding: hex - length: 64 diff --git a/apps/charts/linkwarden.disabled/templates/service.yaml b/apps/charts/linkwarden.disabled/templates/service.yaml deleted file mode 100644 index b759568..0000000 --- a/apps/charts/linkwarden.disabled/templates/service.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: 3000 - protocol: TCP - name: http - selector: - app: "{{ .Release.Name }}" diff --git a/apps/charts/linkwarden.disabled/templates/virtual-service.yaml b/apps/charts/linkwarden.disabled/templates/virtual-service.yaml deleted file mode 100644 index 36e9d43..0000000 --- a/apps/charts/linkwarden.disabled/templates/virtual-service.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-public" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.public }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - ---- -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-private" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.private }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - diff --git a/apps/charts/linkwarden.disabled/values.yaml b/apps/charts/linkwarden.disabled/values.yaml deleted file mode 100644 index e67411f..0000000 --- a/apps/charts/linkwarden.disabled/values.yaml +++ /dev/null @@ -1,5 +0,0 @@ -image: - repository: ghcr.io/linkwarden/linkwarden - tag: v2.13.5@sha256:1588811d7b7d249d387782bb94c7eb189082b82b542ac1667d2ac3d7e7f70ce6 - pullPolicy: IfNotPresent -subdomain: linkwarden diff --git a/apps/charts/metamcp/Chart.yaml b/apps/charts/metamcp/Chart.yaml deleted file mode 100644 index 886d45c..0000000 --- a/apps/charts/metamcp/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: metamcp diff --git a/apps/charts/metamcp/templates/client.yaml b/apps/charts/metamcp/templates/client.yaml deleted file mode 100644 index ab8a59b..0000000 --- a/apps/charts/metamcp/templates/client.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: OidcClient -metadata: - name: "{{ .Release.Name }}" -spec: - environment: "{{ .Values.globals.environment }}" - redirectUris: - - path: api/auth/oauth2/callback/oidc - subdomain: "{{ .Values.subdomain }}" - matchingMode: strict diff --git a/apps/charts/metamcp/templates/database.yaml b/apps/charts/metamcp/templates/database.yaml deleted file mode 100644 index 6a30b53..0000000 --- a/apps/charts/metamcp/templates/database.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: PostgresDatabase -metadata: - name: '{{ .Release.Name }}' -spec: - environment: '{{ .Values.globals.environment }}' diff --git a/apps/charts/metamcp/templates/deployment.yaml b/apps/charts/metamcp/templates/deployment.yaml deleted file mode 100644 index bea9a87..0000000 --- a/apps/charts/metamcp/templates/deployment.yaml +++ /dev/null @@ -1,103 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: "{{ .Release.Name }}" -spec: - strategy: - type: RollingUpdate - replicas: 1 - revisionHistoryLimit: 0 - selector: - matchLabels: - app: "{{ .Release.Name }}" - template: - metadata: - labels: - app: "{{ .Release.Name }}" - spec: - containers: - - name: "{{ .Release.Name }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - ports: - - name: http - containerPort: 12008 - protocol: TCP - livenessProbe: - tcpSocket: - port: http - readinessProbe: - tcpSocket: - port: http - volumeMounts: - - mountPath: /data - name: data - env: - - name: TZ - value: "{{ .Values.globals.timezone }}" - - name: APP_URL - value: "https://{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - name: NEXT_PUBLIC_APP_URL - value: "https://{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - name: BETTER_AUTH_URL - value: "https://{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - name: BETTER_AUTH_SECRET - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-secrets" - key: betterauth - - name: DATABASE_URL - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: url - - name: POSTGRES_DB - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: database - - name: POSTGRES_HOST - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: host - - name: POSTGRES_PORT - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: port - - name: POSTGRES_USER - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: user - - name: POSTGRES_PASSWORD - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-pg-connection" - key: password - - name: OIDC_SCOPES - value: openid email profile - - name: OIDC_PKCE - value: "true" - - name: OIDC_CLIENT_ID - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientId - - name: OIDC_CLIENT_SECRET - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientSecret - - name: OIDC_DISCOVERY_URL - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: configuration - - name: OIDC_AUTHORIZATION_URL - value: "https://authentik.{{ .Values.globals.domain }}/application/o/authorize/" - volumes: - - name: data - persistentVolumeClaim: - claimName: "{{ .Release.Name }}-data" diff --git a/apps/charts/metamcp/templates/pvc.yaml b/apps/charts/metamcp/templates/pvc.yaml deleted file mode 100644 index bc1d0a6..0000000 --- a/apps/charts/metamcp/templates/pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: '{{ .Release.Name }}-data' -spec: - accessModes: - - 'ReadWriteOnce' - resources: - requests: - storage: '1Gi' - storageClassName: '{{ .Values.globals.environment }}' diff --git a/apps/charts/metamcp/templates/secret.yaml b/apps/charts/metamcp/templates/secret.yaml deleted file mode 100644 index 9157356..0000000 --- a/apps/charts/metamcp/templates/secret.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: GenerateSecret -metadata: - name: '{{ .Release.Name }}-secrets' -spec: - fields: - - name: betterauth - encoding: base64 - length: 64 diff --git a/apps/charts/metamcp/templates/service.yaml b/apps/charts/metamcp/templates/service.yaml deleted file mode 100644 index d730592..0000000 --- a/apps/charts/metamcp/templates/service.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: '{{ .Release.Name }}' - labels: - app: '{{ .Release.Name }}' -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: 12008 - protocol: TCP - name: http - selector: - app: '{{ .Release.Name }}' diff --git a/apps/charts/metamcp/templates/virtual-service.yaml b/apps/charts/metamcp/templates/virtual-service.yaml deleted file mode 100644 index 36e9d43..0000000 --- a/apps/charts/metamcp/templates/virtual-service.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-public" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.public }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - ---- -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-private" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.private }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - diff --git a/apps/charts/metamcp/values.yaml b/apps/charts/metamcp/values.yaml deleted file mode 100644 index f5eeaf2..0000000 --- a/apps/charts/metamcp/values.yaml +++ /dev/null @@ -1,5 +0,0 @@ -image: - repository: ghcr.io/metatool-ai/metamcp - tag: 2.4.22@sha256:6d5e0cba4ffc4976069a980723c11042f993a978fe0f3071ba2ec8a91ebc3d41 - pullPolicy: IfNotPresent -subdomain: metamcp diff --git a/apps/charts/nocodb.disabled/Chart.yaml b/apps/charts/nocodb.disabled/Chart.yaml deleted file mode 100644 index 4fcb6db..0000000 --- a/apps/charts/nocodb.disabled/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: nocodb diff --git a/apps/charts/nocodb.disabled/templates/deployment.yaml b/apps/charts/nocodb.disabled/templates/deployment.yaml deleted file mode 100644 index a8244a0..0000000 --- a/apps/charts/nocodb.disabled/templates/deployment.yaml +++ /dev/null @@ -1,34 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - replicas: 1 - revisionHistoryLimit: 0 - selector: - matchLabels: - app: "{{ .Release.Name }}" - template: - metadata: - labels: - app: "{{ .Release.Name }}" - spec: - containers: - - name: "{{ .Release.Name }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - ports: - - containerPort: 8080 - name: http - env: - - name: TZ - value: "{{ .Values.globals.timezone }}" - - name: PUID - - mountPath: /usr/app/data/ - name: data - volumes: - - name: data - persistentVolumeClaim: - claimName: "{{ .Release.Name }}-data" diff --git a/apps/charts/nocodb.disabled/templates/pvc.yaml b/apps/charts/nocodb.disabled/templates/pvc.yaml deleted file mode 100644 index bc1d0a6..0000000 --- a/apps/charts/nocodb.disabled/templates/pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: '{{ .Release.Name }}-data' -spec: - accessModes: - - 'ReadWriteOnce' - resources: - requests: - storage: '1Gi' - storageClassName: '{{ .Values.globals.environment }}' diff --git a/apps/charts/nocodb.disabled/templates/service.yaml b/apps/charts/nocodb.disabled/templates/service.yaml deleted file mode 100644 index c2cbc23..0000000 --- a/apps/charts/nocodb.disabled/templates/service.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: 8080 - protocol: TCP - name: http - selector: - app: "{{ .Release.Name }}" diff --git a/apps/charts/nocodb.disabled/templates/virtual-service.yaml b/apps/charts/nocodb.disabled/templates/virtual-service.yaml deleted file mode 100644 index 381dc10..0000000 --- a/apps/charts/nocodb.disabled/templates/virtual-service.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-public" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.public }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - diff --git a/apps/charts/nocodb.disabled/values.yaml b/apps/charts/nocodb.disabled/values.yaml deleted file mode 100644 index 415e8a5..0000000 --- a/apps/charts/nocodb.disabled/values.yaml +++ /dev/null @@ -1,5 +0,0 @@ -image: - repository: nocodb/nocodb - tag: 0.265.1@sha256:8fd57018accf775fb5390392910e4b0ef6bb154f17c5732b478eb76c40ee8d1e - pullPolicy: IfNotPresent -subdomain: nocodb diff --git a/apps/charts/photoprism.disabled/Chart.yaml b/apps/charts/photoprism.disabled/Chart.yaml deleted file mode 100644 index 00f15a7..0000000 --- a/apps/charts/photoprism.disabled/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: photoprism diff --git a/apps/charts/photoprism.disabled/templates/client.yaml b/apps/charts/photoprism.disabled/templates/client.yaml deleted file mode 100644 index 3aa633c..0000000 --- a/apps/charts/photoprism.disabled/templates/client.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: OidcClient -metadata: - name: "{{ .Release.Name }}" -spec: - environment: "{{ .Values.globals.environment }}" - redirectUris: - - path: /api/v1/oidc/redirect - subdomain: "{{ .Values.subdomain }}" - matchingMode: strict diff --git a/apps/charts/photoprism.disabled/templates/deployment.yaml b/apps/charts/photoprism.disabled/templates/deployment.yaml deleted file mode 100644 index 8344f46..0000000 --- a/apps/charts/photoprism.disabled/templates/deployment.yaml +++ /dev/null @@ -1,93 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: "{{ .Release.Name }}" -spec: - strategy: - type: Recreate - replicas: 1 - revisionHistoryLimit: 0 - selector: - matchLabels: - app: "{{ .Release.Name }}" - template: - metadata: - labels: - app: "{{ .Release.Name }}" - spec: - containers: - - name: "{{ .Release.Name }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - env: - - name: PHOTOPRISM_UPLOAD_NSFW - value: "true" - - name: PHOTOPRISM_SITE_URL - value: "https://{{ .Values.subdomain }}.olsen.cloud" #TODO - # - name: PHOTOPRISM_UID - # value: "1000" - # - name: PHOTOPRISM_GID - # value: "1000" - # - name: PHOTOPRISM_DISABLE_CHOWN - # value: "true" - - name: PHOTOPRISM_AUTH_MODE - value: password - - name: PHOTOPRISM_DISABLE_TLS - value: "false" - - name: PHOTOPRISM_READONLY - value: "false" - - name: PHOTOPRISM_HTTP_COMPRESSION - value: "gzip" - - - name: PHOTOPRISM_ADMIN_PASSWORD - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-secrets" - key: password - - name: PHOTOPRISM_OIDC_SCOPES - value: "openid email profile offline_access" - - name: PHOTOPRISM_OIDC_PROVIDER - value: Authentik - - name: PHOTOPRISM_OIDC_ICON - value: https://cdn.jsdelivr.net/gh/selfhst/icons/png/authentik.png - - name: PHOTOPRISM_OIDC_REGISTER - value: "true" - - name: PHOTOPRISM_OIDC_REDIRECT - value: "false" - - name: PHOTOPRISM_OIDC_CLIENT - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientId - - name: PHOTOPRISM_OIDC_SECRET - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: clientSecret - - name: PHOTOPRISM_OIDC_URI - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-client" - key: configurationIssuer - ports: - - name: http - containerPort: 2342 - protocol: TCP - livenessProbe: - tcpSocket: - port: http - readinessProbe: - tcpSocket: - port: http - volumeMounts: - - mountPath: /photoprism/storage - name: data - - mountPath: /photoprism/originals - name: originals - volumes: - - name: data - persistentVolumeClaim: - claimName: "{{ .Release.Name }}-data" - - name: originals - persistentVolumeClaim: - claimName: pictures diff --git a/apps/charts/photoprism.disabled/templates/pvc.yaml b/apps/charts/photoprism.disabled/templates/pvc.yaml deleted file mode 100644 index aeca898..0000000 --- a/apps/charts/photoprism.disabled/templates/pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: "{{ .Release.Name }}-data" -spec: - accessModes: - - "ReadWriteOnce" - resources: - requests: - storage: "1Gi" - storageClassName: "{{ .Values.globals.environment }}" diff --git a/apps/charts/photoprism.disabled/templates/secret.yaml b/apps/charts/photoprism.disabled/templates/secret.yaml deleted file mode 100644 index 6e8ed5b..0000000 --- a/apps/charts/photoprism.disabled/templates/secret.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: GenerateSecret -metadata: - name: "{{ .Release.Name }}-secrets" -spec: - fields: - - name: password - encoding: base64 - length: 64 diff --git a/apps/charts/photoprism.disabled/templates/service.yaml b/apps/charts/photoprism.disabled/templates/service.yaml deleted file mode 100644 index 2162563..0000000 --- a/apps/charts/photoprism.disabled/templates/service.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: 2342 - protocol: TCP - name: http - selector: - app: "{{ .Release.Name }}" diff --git a/apps/charts/photoprism.disabled/templates/virtual-service.yaml b/apps/charts/photoprism.disabled/templates/virtual-service.yaml deleted file mode 100644 index 36e9d43..0000000 --- a/apps/charts/photoprism.disabled/templates/virtual-service.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-public" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.public }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - ---- -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-private" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.private }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - diff --git a/apps/charts/photoprism.disabled/values.yaml b/apps/charts/photoprism.disabled/values.yaml deleted file mode 100644 index 655e84d..0000000 --- a/apps/charts/photoprism.disabled/values.yaml +++ /dev/null @@ -1,5 +0,0 @@ -image: - repository: photoprism/photoprism - tag: latest@sha256:db16ee6b1ba3e5bc5ad787a3141a082532d1b30932c8b1396fa609394374b83f - pullPolicy: IfNotPresent -subdomain: photoprism diff --git a/apps/charts/siyuan.disabled/Chart.yaml b/apps/charts/siyuan.disabled/Chart.yaml deleted file mode 100644 index bde19c6..0000000 --- a/apps/charts/siyuan.disabled/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -version: 1.0.0 -name: siyuan diff --git a/apps/charts/siyuan.disabled/notes.md b/apps/charts/siyuan.disabled/notes.md deleted file mode 100644 index 41b4c17..0000000 --- a/apps/charts/siyuan.disabled/notes.md +++ /dev/null @@ -1 +0,0 @@ -https://www.authelia.com/integration/openid-connect/clients/jellyfin/ diff --git a/apps/charts/siyuan.disabled/templates/config-pvc.yaml b/apps/charts/siyuan.disabled/templates/config-pvc.yaml deleted file mode 100644 index cabf689..0000000 --- a/apps/charts/siyuan.disabled/templates/config-pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: "{{ .Release.Name }}-workspace" -spec: - accessModes: - - "ReadWriteOnce" - resources: - requests: - storage: "1Gi" - storageClassName: "{{ .Values.globals.environment }}" diff --git a/apps/charts/siyuan.disabled/templates/deployment.yaml b/apps/charts/siyuan.disabled/templates/deployment.yaml deleted file mode 100644 index f6af556..0000000 --- a/apps/charts/siyuan.disabled/templates/deployment.yaml +++ /dev/null @@ -1,50 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: "{{ .Release.Name }}" -spec: - strategy: - type: Recreate - replicas: 1 - revisionHistoryLimit: 0 - selector: - matchLabels: - app: "{{ .Release.Name }}" - template: - metadata: - labels: - app: "{{ .Release.Name }}" - spec: - containers: - - name: "{{ .Release.Name }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - env: - - name: TZ - value: "{{ .Values.globals.timezone}}" - - name: PUID - value: "1000" - - name: PGID - value: "1000" - - name: SIYUAN_ACCESS_AUTH_CODE - valueFrom: - secretKeyRef: - name: "{{ .Release.Name }}-secret" - key: password - ports: - - name: http - containerPort: 6806 - protocol: TCP - livenessProbe: - tcpSocket: - port: http - readinessProbe: - tcpSocket: - port: http - volumeMounts: - - mountPath: /siyuan/workspace - name: workspace - volumes: - - name: workspace - persistentVolumeClaim: - claimName: "{{ .Release.Name }}-workspace" diff --git a/apps/charts/siyuan.disabled/templates/secret.yaml b/apps/charts/siyuan.disabled/templates/secret.yaml deleted file mode 100644 index 6431a4d..0000000 --- a/apps/charts/siyuan.disabled/templates/secret.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: homelab.mortenolsen.pro/v1 -kind: GenerateSecret -metadata: - name: "{{ .Release.Name }}-secret" -spec: - fields: - - name: password - encoding: hex - length: 64 diff --git a/apps/charts/siyuan.disabled/templates/service.yaml b/apps/charts/siyuan.disabled/templates/service.yaml deleted file mode 100644 index e95f389..0000000 --- a/apps/charts/siyuan.disabled/templates/service.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: "{{ .Release.Name }}" - labels: - app: "{{ .Release.Name }}" -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: 6806 - protocol: TCP - name: http - selector: - app: "{{ .Release.Name }}" diff --git a/apps/charts/siyuan.disabled/templates/virtual-service.yaml b/apps/charts/siyuan.disabled/templates/virtual-service.yaml deleted file mode 100644 index 36e9d43..0000000 --- a/apps/charts/siyuan.disabled/templates/virtual-service.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-public" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.public }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - ---- -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: "{{ .Release.Name }}-private" - namespace: "{{ .Release.Namespace }}" -spec: - gateways: - - "{{ .Values.globals.istio.gateways.private }}" - - mesh - hosts: - - "{{ .Values.subdomain }}.{{ .Values.globals.domain }}" - - mesh - http: - - route: - - destination: - host: "{{ .Release.Name }}" - port: - number: 80 - diff --git a/apps/charts/siyuan.disabled/values.yaml b/apps/charts/siyuan.disabled/values.yaml deleted file mode 100644 index 39b6558..0000000 --- a/apps/charts/siyuan.disabled/values.yaml +++ /dev/null @@ -1,5 +0,0 @@ -image: - repository: b3log/siyuan - tag: latest@sha256:5cc3b879b531328b53df95dac40d3e814fcba1a0b85117e56c2998cf9b6c7789 - pullPolicy: IfNotPresent -subdomain: siyuan