UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit f71e99a4 authored by Lynn Still's avatar Lynn Still Committed by joshwolf
Browse files

Update IB image, add credential settings, service name override

parent 68baff4b
No related branches found
No related tags found
1 merge request!311Update IB image, add credential settings, service name override
......@@ -47,10 +47,7 @@ spec:
hostname: {{ .Values.hostname }}
istio:
enabled: {{ .Values.istio.enabled }}
virtualService:
enabled: {{ .Values.addons.minio.virtualService.enabled }}
name: {{ .Values.addons.minio.virtualService.name }}
nameOverride: {{ .Values.addons.minio.name }}
minioRootCreds: minio-root-creds-secret
monitoring:
enabled: {{ .Values.monitoring.enabled }}
......
......@@ -24,10 +24,10 @@ data:
apiVersion: v1
kind: Secret
metadata:
name: minio-creds-secret
name: minio-root-creds-secret
namespace: minio
type: Opaque
data:
accesskey: bWluaW8= # base 64 encoded "minio" (echo -n 'minio' | base64)
secretkey: bWluaW8xMjM= # based 64 encoded "minio123" (echo -n 'minio123' | base64)
{{- end }}
\ No newline at end of file
accesskey: {{ .Values.addons.minio.accesskey | default "minio" | b64enc }}
secretkey: {{ .Values.addons.minio.secretkey | default "minio123" | b64enc }}
{{- end }}
......@@ -335,15 +335,13 @@ addons:
git:
repo: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git
path: "./chart"
tag: "2.0.9-bb.3"
tag: "2.0.9-bb.5"
# Provide a specific name for the minio instance.
name: minio
# -- Default access key to use for minio.
accesskey: ""
# Settings to enable/disable and name the minio virtual service for external access to the minio UI.
virtualService:
enabled: true
name: minio
# -- Default secret key to intstantiate with minio, you should change/delete this after installation.
secretkey: ""
# -- Values to passthrough to the minio instance chart: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git
values: {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment