Skip to content
Snippets Groups Projects
Commit b1c9db82 authored by godog's avatar godog
Browse files

ai3-prober: don't follow redirect and add http probe

Also expect '401' from authenticated (non-sso) services like
backup/rest-server.
parent 13c2830f
No related branches found
No related tags found
No related merge requests found
Pipeline #14807 passed
......@@ -29,15 +29,28 @@ modules:
prober: http
timeout: 5s
http:
valid_status_codes: [200, 301, 302, 307]
valid_status_codes: [200, 301, 302, 307, 401]
method: GET
fail_if_ssl: false
fail_if_not_ssl: true
preferred_ip_protocol: ip4
no_follow_redirects: true
tls_config:
ca_file: /etc/ssl/certs/ca-certificates.crt
insecure_skip_verify: false
# Generic (enforced) http
http:
prober: http
timeout: 5s
http:
valid_status_codes: [200, 301, 302, 307]
method: GET
fail_if_ssl: true
fail_if_not_ssl: false
preferred_ip_protocol: ip4
no_follow_redirects: true
# Standard protocol-oriented probes.
imap_starttls:
prober: tcp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment