apps
infrastructure
kluster-deployments
unused
anki
authelia
authentik
backup
cert-manager
ddns
deployment.yaml
focalboard
freshrss
ingress-nginx
mathieu_ghost
portainer
raspap
searx
storage
syncthing
trilium
aio.deployment.yaml
aio.pvc.yaml
anonaddy.values.yaml
archive.deployment.yaml
crowdsec.ingress.yaml
crowdsec.nginx-bouncer.yaml
crowdsec.values.yaml
grsync.cronjob.yaml
jenkins.pvc.yaml
jenkins.values.yaml
mc-forwarding.deployment.yaml
nginx.values.yaml
nocodb.deployment.yaml
pihole.ingress.yaml
pihole.persistentvolume.yml
pihole.values.yml
prometheus.pv.yml
prometheus.values.yaml
pufferpanel.deployment.yaml
pufferpanel.ingress.yaml
pufferpanel.pvc.yaml
rocketchat.ingress.yaml
rocketchat.pvc.yaml
rocketchat.values.yaml
skooner.deployment.yaml
skooner.ingress.yaml
telegraf-nginx.values.yaml
webtop.deployment.yaml
.gitignore
README.md
35 lines
765 B
YAML
35 lines
765 B
YAML
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
|