UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 30eebe6e authored by joshwolf's avatar joshwolf
Browse files

Merge branch 'update-minio-server' into 'master'

Update IB image, add credential settings, service name override

Summary

This MR adds the following changes and capabilities:

* Updates the base minio server image to the latest approved ironbank image
* Enables specification of the root credentials via values.yaml
* Enables overriding the internal service name if needed.

See merge request platform-one/big-bang/bigbang!311
parents 68baff4b f71e99a4
No related branches found
No related tags found
1 merge request!311Update IB image, add credential settings, service name override
Pipeline #191828 passed
......@@ -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