chore: Update manifests after change

This commit is contained in:
2025-12-04 01:12:52 +00:00
parent d676602031
commit e2d4b1edf3
13 changed files with 537 additions and 537 deletions

View File

@@ -254,27 +254,6 @@ spec:
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: qbittorrent-qbit-manage-config-data
labels:
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: qbittorrent
helm.sh/chart: qbittorrent-4.4.0
annotations:
helm.sh/resource-policy: keep
namespace: qbittorrent
spec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: "1Gi"
storageClassName: "ceph-block"
---
# Source: qbittorrent/charts/qbittorrent/templates/common.yaml
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: qbittorrent-qui-config-data
labels:
@@ -314,6 +293,27 @@ spec:
storage: "1Gi"
storageClassName: "ceph-block"
---
# Source: qbittorrent/charts/qbittorrent/templates/common.yaml
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: qbittorrent-qbit-manage-config-data
labels:
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: qbittorrent
helm.sh/chart: qbittorrent-4.4.0
annotations:
helm.sh/resource-policy: keep
namespace: qbittorrent
spec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: "1Gi"
storageClassName: "ceph-block"
---
# Source: qbittorrent/templates/persistent-volume-claim.yaml
apiVersion: v1
kind: PersistentVolumeClaim
@@ -439,6 +439,83 @@ spec:
# Source: qbittorrent/charts/qbittorrent/templates/common.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: qbittorrent-qui
labels:
app.kubernetes.io/controller: qui
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: qbittorrent
helm.sh/chart: qbittorrent-4.4.0
namespace: qbittorrent
spec:
revisionHistoryLimit: 3
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/controller: qui
app.kubernetes.io/name: qbittorrent
app.kubernetes.io/instance: qbittorrent
template:
metadata:
labels:
app.kubernetes.io/controller: qui
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/name: qbittorrent
spec:
enableServiceLinks: false
serviceAccountName: default
automountServiceAccountToken: true
hostIPC: false
hostNetwork: false
hostPID: false
dnsPolicy: ClusterFirst
containers:
- env:
- name: QUI__METRICS_ENABLED
value: "true"
- name: QUI__METRICS_HOST
value: 0.0.0.0
- name: QUI__METRICS_PORT
value: "9074"
- name: QUI__OIDC_ENABLED
value: "true"
- name: QUI__OIDC_ISSUER
value: https://auth.alexlebens.dev/application/o/qui/
- name: QUI__OIDC_CLIENT_ID
valueFrom:
secretKeyRef:
key: client
name: qui-oidc-secret
- name: QUI__OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
key: secret
name: qui-oidc-secret
- name: QUI__OIDC_REDIRECT_URL
value: https://qui.alexlebens.net/api/auth/oidc/callback
- name: QUI__OIDC_DISABLE_BUILT_IN_LOGIN
value: "false"
image: ghcr.io/autobrr/qui:v1.8.1
imagePullPolicy: IfNotPresent
name: qui
resources:
requests:
cpu: 10m
memory: 128Mi
volumeMounts:
- mountPath: /config
name: qui-config-data
volumes:
- name: qui-config-data
persistentVolumeClaim:
claimName: qbittorrent-qui-config-data
---
# Source: qbittorrent/charts/qbittorrent/templates/common.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: qbittorrent-main
labels:
@@ -729,83 +806,6 @@ spec:
persistentVolumeClaim:
claimName: qbittorrent-nfs-storage
---
# Source: qbittorrent/charts/qbittorrent/templates/common.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: qbittorrent-qui
labels:
app.kubernetes.io/controller: qui
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: qbittorrent
helm.sh/chart: qbittorrent-4.4.0
namespace: qbittorrent
spec:
revisionHistoryLimit: 3
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/controller: qui
app.kubernetes.io/name: qbittorrent
app.kubernetes.io/instance: qbittorrent
template:
metadata:
labels:
app.kubernetes.io/controller: qui
app.kubernetes.io/instance: qbittorrent
app.kubernetes.io/name: qbittorrent
spec:
enableServiceLinks: false
serviceAccountName: default
automountServiceAccountToken: true
hostIPC: false
hostNetwork: false
hostPID: false
dnsPolicy: ClusterFirst
containers:
- env:
- name: QUI__METRICS_ENABLED
value: "true"
- name: QUI__METRICS_HOST
value: 0.0.0.0
- name: QUI__METRICS_PORT
value: "9074"
- name: QUI__OIDC_ENABLED
value: "true"
- name: QUI__OIDC_ISSUER
value: https://auth.alexlebens.dev/application/o/qui/
- name: QUI__OIDC_CLIENT_ID
valueFrom:
secretKeyRef:
key: client
name: qui-oidc-secret
- name: QUI__OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
key: secret
name: qui-oidc-secret
- name: QUI__OIDC_REDIRECT_URL
value: https://qui.alexlebens.net/api/auth/oidc/callback
- name: QUI__OIDC_DISABLE_BUILT_IN_LOGIN
value: "false"
image: ghcr.io/autobrr/qui:v1.8.1
imagePullPolicy: IfNotPresent
name: qui
resources:
requests:
cpu: 10m
memory: 128Mi
volumeMounts:
- mountPath: /config
name: qui-config-data
volumes:
- name: qui-config-data
persistentVolumeClaim:
claimName: qbittorrent-qui-config-data
---
# Source: qbittorrent/templates/external-secret.yaml
apiVersion: external-secrets.io/v1
kind: ExternalSecret