30 lines
1.3 KiB
YAML
30 lines
1.3 KiB
YAML
# This configmap stores the configuration used by cloudflared.
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
data:
|
|
config.yaml: |
|
|
# Name of the tunnel you want to run
|
|
tunnel: {{ .Values.cloudflare.tunnelName }}
|
|
# The location of the secret containing the tunnel credentials
|
|
credentials-file: /etc/cloudflared/creds/credentials.json
|
|
# General purpose TCP routing for the network
|
|
warp-routing:
|
|
enabled: {{ .Values.cloudflare.enableWarp }}
|
|
# Serves the metrics server under /metrics and the readiness server under /ready
|
|
metrics: 0.0.0.0:2000
|
|
# Autoupdates applied in a k8s pod will be lost when the pod is removed or restarted, so
|
|
# autoupdate doesn't make sense in Kubernetes. However, outside of Kubernetes, we strongly
|
|
# recommend using autoupdate.
|
|
no-autoupdate: true
|
|
# The `ingress` block tells cloudflared which local service to route incoming
|
|
# requests to. For more about ingress rules, see
|
|
# https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/ingress
|
|
ingress:
|
|
{{- with .Values.cloudflare.ingress }}
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
# This rule matches any traffic which didn't match a previous rule, and responds with HTTP 404.
|
|
- service: http_status:404
|