-
Notifications
You must be signed in to change notification settings - Fork 0
existingSecret
Cesar Celis Hernandez edited this page Mar 19, 2024
·
9 revisions
- In the helm chart, you use existingSecret:
## Secret with default environment variable configurations to be used by MinIO Tenant.
## Not recommended for production deployments! Create the secret manually instead.
secrets:
# name: myminio-env-configuration
# MinIO root user and password
# accessKey: minio
# secretKey: minio123
## Set the value for existingSecret to use a pre created secret and dont create default one
existingSecret: myminio-env-configuration
## MinIO Tenant Definition
tenant:
- Create the cluster
createcluster nodeport
- install the operator
installoperator withhelm
- create the tenant namespace
k create namespace tenant-ns
- Create the configuration secret in advance
apiVersion: v1
data:
config.env: ZXhwb3J0IE1JTklPX1JPT1RfVVNFUj0ibWluaW8iCmV4cG9ydCBNSU5JT19ST09UX1BBU1NXT1JEPSJtaW5pbzMyMSI=
kind: Secret
metadata:
annotations:
meta.helm.sh/release-name: tenant-ns
meta.helm.sh/release-namespace: tenant-ns
creationTimestamp: "2024-03-19T19:37:21Z"
labels:
app.kubernetes.io/managed-by: Helm
name: myminio-env-configuration
namespace: tenant-ns
resourceVersion: "845"
uid: aaf20d77-8df3-4ade-b00f-4611e0245aeb
type: Opaque
k apply -f secret.yaml
- install the tenant once the secret was previously created
# To install tenant via Helm:
function installtenanthelmexistingsecret() {
helm install \
--namespace tenant-ns \
--create-namespace tenant-ns \
/Users/cniackz/bash-config/config-files/helm/Tenant/helm-tenant-5.0.9-existingSecret
}
installtenanthelmexistingsecret
- tenant is deployed using that secret