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: ...@@ -47,10 +47,7 @@ spec:
hostname: {{ .Values.hostname }} hostname: {{ .Values.hostname }}
istio: istio:
enabled: {{ .Values.istio.enabled }} enabled: {{ .Values.istio.enabled }}
virtualService: minioRootCreds: minio-root-creds-secret
enabled: {{ .Values.addons.minio.virtualService.enabled }}
name: {{ .Values.addons.minio.virtualService.name }}
nameOverride: {{ .Values.addons.minio.name }}
monitoring: monitoring:
enabled: {{ .Values.monitoring.enabled }} enabled: {{ .Values.monitoring.enabled }}
......
...@@ -24,10 +24,10 @@ data: ...@@ -24,10 +24,10 @@ data:
apiVersion: v1 apiVersion: v1
kind: Secret kind: Secret
metadata: metadata:
name: minio-creds-secret name: minio-root-creds-secret
namespace: minio namespace: minio
type: Opaque type: Opaque
data: data:
accesskey: bWluaW8= # base 64 encoded "minio" (echo -n 'minio' | base64) accesskey: {{ .Values.addons.minio.accesskey | default "minio" | b64enc }}
secretkey: bWluaW8xMjM= # based 64 encoded "minio123" (echo -n 'minio123' | base64) secretkey: {{ .Values.addons.minio.secretkey | default "minio123" | b64enc }}
{{- end }} {{- end }}
\ No newline at end of file
...@@ -335,15 +335,13 @@ addons: ...@@ -335,15 +335,13 @@ addons:
git: git:
repo: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git repo: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git
path: "./chart" path: "./chart"
tag: "2.0.9-bb.3" tag: "2.0.9-bb.5"
# Provide a specific name for the minio instance. # -- Default access key to use for minio.
name: minio accesskey: ""
# Settings to enable/disable and name the minio virtual service for external access to the minio UI. # -- Default secret key to intstantiate with minio, you should change/delete this after installation.
virtualService: secretkey: ""
enabled: true
name: minio
# -- Values to passthrough to the minio instance chart: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git # -- Values to passthrough to the minio instance chart: https://repo1.dso.mil/platform-one/big-bang/apps/application-utilities/minio.git
values: {} 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