Skip to content

Commit

Permalink
error responding fixed for minio check
Browse files Browse the repository at this point in the history
  • Loading branch information
k0taperk0t committed Oct 4, 2023
1 parent 6f64ca7 commit 59513cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ fi
echo

check_dependencies() {
# Check if minio is already deployed
if helm status minio -n minio > /dev/null 2>&1 ; then
# Check if minio is already deployed. We suppress only StdOut for watching error if check will fail.
if helm status minio -n minio 1> /dev/null ; then
# Setting env vars to access MinIO
export S3_COMPLIANT_AWS_ACCESS_KEY_ID="AKIAIOSFODNN7EXAMPLE"
export S3_COMPLIANT_AWS_SECRET_ACCESS_KEY="wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
Expand Down

0 comments on commit 59513cc

Please sign in to comment.