-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathvalues.yaml
More file actions
132 lines (114 loc) · 3.2 KB
/
Copy pathvalues.yaml
File metadata and controls
132 lines (114 loc) · 3.2 KB
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
123
124
125
126
127
128
129
130
131
132
# Default values for proxy-relay.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: httpd
tag: 2.4.68
pullPolicy: IfNotPresent
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 80
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: ["/"]
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
remoteUrl: {}
# If you have a proxy you can set it here
# proxyUrl: http://myproxycompany:8080
proxyUrl: {}
# Can be set to add extra virtual host and kubernetes services
additionnalReverseProxyServices: {}
# #Name will be used for servername in virtualhost of httpd
# - name: relais-proxy-myapps
# alias: relais-proxy-myapps.mydomain.com
# remoteUrl: https://myexternalapp.domain.com
# #If you have a proxy you can set it here
# proxyUrl: http://myproxycompany:8080
# #If you want to call lua scripts, you can set them here
# lua:
# - directive: LuaHookAuthChecker
# functionName: authcheck_hook
# parameters:
# - param1
# - param2
luaHandlers: {}
# |-
# -- Content file which can evaluate by services
# require 'apache2'
# function authcheck_hook(r)
# auth = r.headers_in['Authorization']
# if auth ~= nil then
# r.user = 'foo'
# end
# if r.user == nil then
# r:debug("authcheck: user is nil, returning 401")
# r.err_headers_out['WWW-Authenticate'] = 'Basic realm="WallyWorld"'
# return 401
# elseif r.user == "foo" then
# r:debug('user foo: OK')
# else
# r:debug("authcheck: user='" .. r.user .. "'")
# r.err_headers_out['WWW-Authenticate'] = 'Basic realm="WallyWorld"'
# return 401
# end
# return apache2.OK
# end
extraEnv: {}
## Extra environment variables to be injected
# DATABASE_ENGINE: mysql
# DATABASE_HOST: mysql
# DATABASE_NAME: spring
# DATABASE_USERNAME: spring
# DATABASE_PASSWORD: spring
secretEnv: {}
# Exra environment variables from secret to be inject
# - secretName: mysecret
# env:
# MYVAR1: Key1InMySecret
# MYVAR2: Key2InMySecret
# - secretName: mysecret2
# env:
# MYVAR3: Key3InMySecret
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
hpa: {}
# minReplicas: 2
# maxReplicas: 4
# cpuMax: 80
# memoryMax: 70
## uncomment and modify the following livenessProbe and readinessProbe.
livenessProbe:
httpGet:
path: /server-status
port: http
# initialDelaySeconds: 300
# periodSeconds: 10
readinessProbe:
httpGet:
path: /server-status
port: http
# initialDelaySeconds: 60
# periodSeconds: 10
nodeSelector: {}
tolerations: []
affinity: {}