This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #4200 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: decluttarr
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: decluttarr
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: decluttarr
|
|
helm.sh/chart: decluttarr-4.6.2
|
|
namespace: decluttarr
|
|
spec:
|
|
revisionHistoryLimit: 3
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/name: decluttarr
|
|
app.kubernetes.io/instance: decluttarr
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: decluttarr
|
|
app.kubernetes.io/name: decluttarr
|
|
spec:
|
|
enableServiceLinks: false
|
|
serviceAccountName: default
|
|
automountServiceAccountToken: true
|
|
hostIPC: false
|
|
hostNetwork: false
|
|
hostPID: false
|
|
dnsPolicy: ClusterFirst
|
|
containers:
|
|
- env:
|
|
- name: TZ
|
|
value: America/Chicago
|
|
image: ghcr.io/manimatter/decluttarr:v2.0.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: main
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
volumeMounts:
|
|
- mountPath: /app/config/config.yaml
|
|
mountPropagation: None
|
|
name: config
|
|
readOnly: true
|
|
subPath: config.yaml
|
|
volumes:
|
|
- name: config
|
|
secret:
|
|
secretName: decluttarr-config-secret
|