initial migration
This commit is contained in:
34
unused/ddns/deployment.yaml
Normal file
34
unused/ddns/deployment.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: ddns
|
||||
name: cloudflare-ddns
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: cloudflare-ddns
|
||||
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: cloudflare-ddns
|
||||
|
||||
spec:
|
||||
containers:
|
||||
- name: cloudflare-ddns
|
||||
image: timothyjmiller/cloudflare-ddns:latest
|
||||
resources:
|
||||
limits:
|
||||
memory: "32Mi"
|
||||
cpu: "50m"
|
||||
env:
|
||||
- name: CONFIG_PATH
|
||||
value: "/etc/cloudflare-ddns/"
|
||||
volumeMounts:
|
||||
- mountPath: "/etc/cloudflare-ddns"
|
||||
name: config-cloudflare-ddns
|
||||
readOnly: true
|
||||
volumes:
|
||||
- name: config-cloudflare-ddns
|
||||
secret:
|
||||
secretName: config-cloudflare-ddns
|
Reference in New Issue
Block a user