28 lines
549 B
YAML
28 lines
549 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ddclient
|
|
namespace: ddclient
|
|
labels:
|
|
app: ddclient
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: ddclient
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ddclient
|
|
spec:
|
|
containers:
|
|
- name: ddclient
|
|
image: linuxserver/ddclient
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: csismb-ddclient-config
|
|
volumes:
|
|
- name: csismb-ddclient-config
|
|
persistentVolumeClaim:
|
|
claimName: csismb-ddclient-config
|