From 072fa8af3aaa4fc5a4cf685cedb2f516e4dc493a Mon Sep 17 00:00:00 2001 From: Will Date: Thu, 21 Mar 2024 11:35:40 -0700 Subject: [PATCH] Fix for passing through proper creds to minio - Fix for passing through proper creds to minio --- helm/nemesis/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helm/nemesis/values.yaml b/helm/nemesis/values.yaml index 28ecdad..e71f96f 100644 --- a/helm/nemesis/values.yaml +++ b/helm/nemesis/values.yaml @@ -5,7 +5,7 @@ operation: logLevel: "INFO" assessmentId: "ASSESS-0" # Can't be localhost because of URL validation in passwordcracker container - nemesisHttpServer: "http://127.0.0.1:8080/" + nemesisHttpServer: "https://127.0.0.1:8080/" # Environment defines how pods should be deployed # "development" will deploy without persistent storage and won't deploy the enrichment container # "test" will deploy without persistent storage @@ -25,6 +25,10 @@ aws: minio: exposeService: true + # for minio itself + auth: + existingSecret: minio-creds + # for other services existingSecret: minio-creds persistence: size: "30Gi"