We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 241317a commit 1b16cc0Copy full SHA for 1b16cc0
build/postgres-operator/install-extensions.sh
@@ -16,14 +16,12 @@ if [[ -n $STORAGE_ENDPOINT ]]; then
16
args+=(-endpoint "$STORAGE_ENDPOINT")
17
fi
18
19
-# Checking the STORAGE_DISABLE_SSL env for backwards compatibility before 2.8.0
20
-if [[ -n $STORAGE_DISABLE_SSL ]]; then
21
- args+=(-disable-ssl "$STORAGE_DISABLE_SSL")
+if [[ "${STORAGE_DISABLE_SSL}" == "true" ]]; then
+ args+=(-disable-ssl)
22
23
24
-# Checking the STORAGE_FORCE_PATH_STYLE env for backwards compatibility before 2.8.0
25
-if [[ -n $STORAGE_FORCE_PATH_STYLE ]]; then
26
- args+=(-force-path-style "$STORAGE_FORCE_PATH_STYLE")
+if [[ "${STORAGE_FORCE_PATH_STYLE}" == "true" ]]; then
+ args+=(-force-path-style)
27
28
29
for key in "${extensions[@]}"; do
0 commit comments