44 lines
897 B
YAML
44 lines
897 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cloudflared-deployment
|
|
namespace: cloudflare
|
|
labels:
|
|
app: cloudflared
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
pod: cloudflared
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
pod: cloudflared
|
|
spec:
|
|
containers:
|
|
- name: cloudflared
|
|
image: cloudflare/cloudflared:latest
|
|
args:
|
|
- --token
|
|
- $(TUNNEL_TOKEN)
|
|
command:
|
|
- cloudflared
|
|
- tunnel
|
|
- --metrics
|
|
- 0.0.0.0:2000
|
|
- run
|
|
env:
|
|
- name: TUNNEL_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: token
|
|
name: cf-secrets
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /ready
|
|
port: 2000
|
|
failureThreshold: 1
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|