This commit is contained in:
pgumpoldsberger 2025-04-14 09:56:14 +00:00 committed by GitHub
commit 912992458a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: cloudflared-tunnel
namespace: cloudflare-tunnel
spec:
replicas: 3
selector:
matchLabels:
app: cloudflared-tunnel
template:
metadata:
labels:
app: cloudflared-tunnel
spec:
nodeSelector:
worker: "true"
containers:
- name: cloudflared
image: cloudflare/cloudflared:latest
command:
[
"cloudflared",
"tunnel",
"--no-autoupdate",
"run",
"--token",
"<ADD YOUR TOKEN HERE>",
]