@@ -20,11 +20,11 @@ spec:
20
20
args :
21
21
- |
22
22
echo Checking connectivity service http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}
23
- wget -O- -q --timeout=2 g --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}
23
+ wget -O- -q --timeout=2 --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}
24
24
echo
25
25
26
26
echo Checking connectivity {{ .Values.perfanaURL }}/api/status
27
- wget -O- -q --timeout=2 g --tries=2 {{ .Values.perfanaURL }}/api/status
27
+ wget -O- -q --timeout=2 --tries=2 {{ .Values.perfanaURL }}/api/status
28
28
echo
29
29
30
30
echo Checking matching certificate and private key
@@ -46,29 +46,29 @@ spec:
46
46
export BASIC_AUTH_USERNAME={{ .Values.basicAuthSecret.username }}
47
47
export BASIC_AUTH_PASSWORD={{ .Values.basicAuthSecret.password }}
48
48
echo Checking connectivity to http://$BASIC_AUTH_USERNAME:*****@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
49
- wget -O- -q --timeout=2 g --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
49
+ wget -O- -q --timeout=2 --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
50
50
echo
51
51
52
52
echo Checking connectivity to http://$BASIC_AUTH_USERNAME:*****@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo
53
- wget -O- -q --timeout=2 g --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo > /dev/null
53
+ wget -O- -q --timeout=2 --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo > /dev/null
54
54
echo OK
55
55
56
56
echo Checking connectivity to http://$BASIC_AUTH_USERNAME:*****@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
57
- wget -O- -q --timeout=2 g --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
57
+ wget -O- -q --timeout=2 --tries=2 http://$BASIC_AUTH_USERNAME:$BASIC_AUTH_PASSWORD@{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
58
58
echo OK
59
59
60
60
{{- else if not .Values.basicAuth.enabled }}
61
61
62
62
echo Checking connectivity to http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
63
- wget -O- -q --timeout=2 g --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
63
+ wget -O- -q --timeout=2 --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/api/status
64
64
echo
65
65
66
66
echo Checking connectivity to http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo
67
- wget -O- -q --timeout=2 g --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo > /dev/null
67
+ wget -O- -q --timeout=2 --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/mimir/api/v1/status/buildinfo > /dev/null
68
68
echo OK
69
69
70
70
echo Checking connectivity to http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
71
- wget -O- -q --timeout=2 g --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
71
+ wget -O- -q --timeout=2 --tries=2 http://{{ include "perfana-auth-proxy.fullname" . }}:{{ .Values.service.port }}/influxdb/ping
72
72
echo OK
73
73
{{- end }}
74
74
0 commit comments