Skip to content

Commit

Permalink
Merge branch 'main' into K8SPXC-1079-standardize-service-exposure
Browse files Browse the repository at this point in the history
  • Loading branch information
inelpandzic authored Dec 1, 2023
2 parents f11245c + 2c9b087 commit 2662e2d
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions e2e-tests/functions
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ deploy_operator() {

deploy_helm() {
helm repo add hashicorp https://helm.releases.hashicorp.com
helm repo add minio https://helm.min.io/
helm repo add minio https://charts.min.io/
helm repo update
}

Expand Down Expand Up @@ -1245,15 +1245,19 @@ start_minio() {

local endpoint="http://minio-service:9000"
local minio_args=(
--version 8.0.5
--set accessKey=some-access-key
--set secretKey=some-secret-key
--version 5.0.14
--set replicas=1
--set mode=standalone
--set resources.requests.memory=256Mi
--set rootUser=rootuser
--set rootPassword=rootpass123
--set "users[0].accessKey=some-access-key"
--set "users[0].secretKey=some-secret-key"
--set "users[0].policy=consoleAdmin"
--set service.type=ClusterIP
--set configPathmc=/tmp/.minio/
--set securityContext.enabled=false
--set persistence.size=2G
--set environment.MINIO_REGION=us-east-1
--set environment.MINIO_HTTP_TRACE=/tmp/trace.log
)
if [[ -n $cert_secret ]]; then
endpoint="https://minio-service:9000"
Expand Down

0 comments on commit 2662e2d

Please sign in to comment.