Skip to content

Commit

Permalink
[bitnami/opensearch] Fix readiness/liveness probe not working if "res…
Browse files Browse the repository at this point in the history
…tEncryption: false" in values.yaml (#47340)

Signed-off-by: Andrea Rabbaglietti <rabbagliettiandrea@gmail.com>
  • Loading branch information
rabbagliettiandrea authored Sep 5, 2023
1 parent e9d5592 commit 213b2f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,8 @@ elasticsearch_healthcheck() {

host=$(get_elasticsearch_hostname)

is_boolean_yes "$DB_ENABLE_SECURITY" && is_boolean_yes "$DB_ENABLE_REST_TLS" && protocol="https" && command_args+=("-k" "--user" "${DB_USERNAME}:${DB_PASSWORD}")
is_boolean_yes "$DB_ENABLE_SECURITY" && command_args+=("-k" "--user" "${DB_USERNAME}:${DB_PASSWORD}")
is_boolean_yes "$DB_ENABLE_REST_TLS" && protocol="https"

# Combination of --silent, --output and --write-out allows us to obtain both the status code and the request body
output=$(mktemp)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,9 @@ elasticsearch_healthcheck() {

host=$(get_elasticsearch_hostname)

is_boolean_yes "$DB_ENABLE_SECURITY" && is_boolean_yes "$DB_ENABLE_REST_TLS" && protocol="https" && command_args+=("-k" "--user" "${DB_USERNAME}:${DB_PASSWORD}")

is_boolean_yes "$DB_ENABLE_SECURITY" && command_args+=("-k" "--user" "${DB_USERNAME}:${DB_PASSWORD}")
is_boolean_yes "$DB_ENABLE_REST_TLS" && protocol="https"

# Combination of --silent, --output and --write-out allows us to obtain both the status code and the request body
output=$(mktemp)
command_args+=("-o" "$output" "${protocol}://${host}:${DB_HTTP_PORT_NUMBER}/_cluster/health?local=true")
Expand Down

0 comments on commit 213b2f7

Please sign in to comment.