This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvalues.yaml
122 lines (107 loc) · 2.78 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Default values for hub-helm-chart.
image:
name: ghcr.io/traefik/hub-agent-kubernetes
pullPolicy: Always
pullSecrets: []
# Overrides the image tag whose default is the chart appVersion.
# tag: "v1.2.0"
# User token to access to hub
token: ""
# You can reference a secret for the Hub Token, this takes precedence over `token`
# tokenSecretRef:
# name: hub-token
# key: token
# The Namespace of your Traefik Proxy installation
traefikNamespace: $(POD_NAMESPACE)
controllerDeployment:
# Additional deployment annotations
annotations:
hub.traefik.io/ingress-controller: none
# Additional deployment labels
labels: {}
# Additional pods annotations
podAnnotations: {}
# Additional pods labels
podLabels: {}
# Traefik Proxy configuration
traefik: {}
# metricsURL: http://traefik-hub.$(POD_NAMESPACE).svc.cluster.local:9100/metrics
args:
- --log-level=debug
# env:
# - name: "LOG_LEVEL"
# value: "trace"
authServerDeployment:
# Number of replicas
replicas: 3
# Additional deployment annotations
annotations:
hub.traefik.io/ingress-controller: none
# Additional deployment labels
labels: {}
# Additional pods annotations
podAnnotations: {}
# Additional pods labels
podLabels: {}
args:
- --log-level=debug
tunnelDeployment:
# Number of replicas
replicas: 1
# Additional deployment annotations
annotations:
hub.traefik.io/ingress-controller: none
# Additional deployment labels
labels: {}
# Additional pods annotations
podAnnotations: {}
# Additional pods labels
podLabels: {}
# Traefik Proxy tunnel configuration
traefik:
tunnelPort: 9901
# tunnelHost: traefik-hub.$(POD_NAMESPACE).svc.cluster.local
args:
- --log-level=debug
devPortalDeployment:
# Number of replicas
replicas: 3
# Additional deployment annotations
annotations:
hub.traefik.io/ingress-controller: none
# Additional deployment labels
labels: {}
# Additional pods annotations
podAnnotations: {}
# Additional pods labels
podLabels: {}
args:
- --log-level=debug
resources: {}
# requests:
# cpu: "100m"
# memory: "50Mi"
# limits:
# cpu: "300m"
# memory: "150Mi"
affinity: {}
nodeSelector: {}
tolerations: []
serviceAccount:
name: ""
# If set, an existing service account is used
# If not set, a service account is created automatically using the fullname template
annotations: {}
service:
# Additional service annotations
annotations: {}
# Additional service labels
labels: {}
catchAllService:
externalName: hub.traefik.io
admissionWebhook:
# The webhook certificate validity duration in days (100 years by default)
certValidity: 36525
# When set to true, it will remove Helm specific labels
# It's usefull for generating clean Yaml on a GitOps setup
withoutHelmLabels: false