33 lines
693 B
YAML
33 lines
693 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: profilarr
|
|
name: profilarr
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: profilarr
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
app: profilarr
|
|
spec:
|
|
containers:
|
|
- image: ghcr.io/dictionarry-hub/profilarr:2.1.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: profilarr
|
|
ports:
|
|
- containerPort: 6868
|
|
name: http
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: config
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: profilarr-config-data
|