Skip to content

Commit ffd439b

Browse files
committed
py: fix minio credentials
Fixes a regresssion with the default minio credentials for the CI. Signed-off-by: Abhinav Gyawali <22275402+abhizer@users.noreply.github.com>
1 parent c89ff35 commit ffd439b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

python/tests/platform/test_checkpoint_sync.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
from tests import enterprise_only
1111
from tests.shared_test_pipeline import SharedTestPipeline
1212

13-
DEFAULT_ENDPOINT = os.environ.get("DEFAULT_MINIO_ENDPOINT", "http://localhost:9000")
14-
DEFAULT_BUCKET = "default"
15-
ACCESS_KEY = "minioadmin"
16-
SECRET_KEY = "minioadmin"
13+
DEFAULT_ENDPOINT = os.environ.get(
14+
"DEFAULT_MINIO_ENDPOINT", "http://minio.extra.svc.cluster.local:9000"
15+
)
16+
DEFAULT_BUCKET = os.environ.get("DEFAULT_MINIO_BUCKET", "default")
17+
ACCESS_KEY = os.environ.get("MINIO_ACCESS_KEY", "minio")
18+
SECRET_KEY = os.environ.get("MINIO_SECRET_KEY", "miniopasswd")
1719

1820

1921
def storage_cfg(

0 commit comments

Comments
 (0)