mirror of
https://gitlab.com/deepcypher/dc-kc.git
synced 2026-01-27 11:12:08 +00:00
19 lines
806 B
YAML
19 lines
806 B
YAML
configuration:
|
|
# cloudflare configuration type either token or file
|
|
# file is for local configuration but is a bit more permissive
|
|
# token is more locked down, and can only be externally managed.
|
|
type: file # accepted values: token or file
|
|
env: # statically defined environment variables can be as many as desired
|
|
# we dont want auto updates, kubernetes can handle this nicely
|
|
- name: NO_AUTOUPDATE
|
|
value: "true"
|
|
# In a k8s environment, the metrics server needs to listen outside the pod it runs on.
|
|
# The address 0.0.0.0:2000 allows any pod in the namespace.
|
|
- name: TUNNEL_METRICS
|
|
value: "0.0.0.0:2000"
|
|
secrets: []
|
|
#- name: tunnel-token # ensure configuration.type is set to "token" if using this token secret
|
|
# lookup:
|
|
# - key: tunnelToken
|
|
# env: TUNNEL_TOKEN
|