diff --git a/docs/how-tos/backup-to-s3.md b/docs/how-tos/backup-to-s3.md index f922495..7d72d18 100644 --- a/docs/how-tos/backup-to-s3.md +++ b/docs/how-tos/backup-to-s3.md @@ -37,6 +37,7 @@ services: - AWS_SECRET_KEY=xxxxx ## In case you are using S3 alternative such as Minio and your Minio instance is not secured, you change it to true - AWS_DISABLE_SSL="false" + - AWS_FORCE_PATH_STYLE="false" # pg-bkup container must be connected to the same network with your database networks: diff --git a/docs/how-tos/deploy-on-kubernetes.md b/docs/how-tos/deploy-on-kubernetes.md index 8f5e46c..e0f2a92 100644 --- a/docs/how-tos/deploy-on-kubernetes.md +++ b/docs/how-tos/deploy-on-kubernetes.md @@ -58,6 +58,8 @@ spec: - name: AWS_SECRET_KEY value: "xxxx" - name: AWS_DISABLE_SSL + value: "false" + - name: AWS_FORCE_PATH_STYLE value: "false" restartPolicy: Never ``` diff --git a/docs/how-tos/restore-from-s3.md b/docs/how-tos/restore-from-s3.md index 27c784a..f3a08e4 100644 --- a/docs/how-tos/restore-from-s3.md +++ b/docs/how-tos/restore-from-s3.md @@ -40,6 +40,7 @@ services: - AWS_SECRET_KEY=xxxxx ## In case you are using S3 alternative such as Minio and your Minio instance is not secured, you change it to true - AWS_DISABLE_SSL="false" + - AWS_FORCE_PATH_STYLE="false" # pg-bkup container must be connected to the same network with your database networks: - web diff --git a/examples/k8s-job.yaml b/examples/k8s-job.yaml index cdf766f..2849d98 100644 --- a/examples/k8s-job.yaml +++ b/examples/k8s-job.yaml @@ -43,4 +43,6 @@ spec: - name: AWS_SECRET_KEY value: "xxxx" - name: AWS_DISABLE_SSL + value: "false" + - name: AWS_FORCE_PATH_STYLE value: "false" \ No newline at end of file