mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
chore(deps): update netbird to v0.28.9 chore(deps): update netbirdio/management docker tag to v0.28.9 chore(deps): update netbirdio/netbird docker tag to v0.28.9 chore(deps): update netbirdio/signal docker tag to v0.28.9 chore(deps): update cloudflare/cloudflared docker tag to v2024.8.3 chore(deps): update ghcr.io/onedr0p/radarr docker tag to v5.9.1 chore(deps): update ghcr.io/onedr0p/plex docker tag to v1.40.5.8897-e5987a19d chore(deps): update helm release argo-cd to v7.4.5 chore(deps): update terraform proxmox to v0.63.0 chore(deps): update dependency corewire/images/crossplane/function-keycloak-builtin-objects to v3 chore(deps): update keycloak docker tag to v22.1.3 chore(deps): update ghcr.io/jellyfin/jellyfin docker tag to v10.9.10 chore(deps): update proxmox-csi-plugin docker tag to v0.2.9
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
app: cloudflared
|
|
name: cloudflared
|
|
namespace: cloudflared
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: cloudflared
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cloudflared
|
|
spec:
|
|
containers:
|
|
- name: cloudflared
|
|
image: cloudflare/cloudflared:2024.8.3 # renovate: docker=cloudflare/cloudflared
|
|
imagePullPolicy: IfNotPresent
|
|
args:
|
|
- tunnel
|
|
- --config
|
|
- /etc/cloudflared/config/config.yaml
|
|
- run
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /ready
|
|
port: 2000
|
|
initialDelaySeconds: 60
|
|
failureThreshold: 5
|
|
periodSeconds: 10
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 64Mi
|
|
limits:
|
|
memory: 512Mi
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /etc/cloudflared/config/config.yaml
|
|
subPath: config.yaml
|
|
- name: credentials
|
|
mountPath: /etc/cloudflared/credentials
|
|
readOnly: true
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: config
|
|
- name: credentials
|
|
secret:
|
|
secretName: tunnel-credentials
|