blob: 0d59f1b834bd7f096da175363f5aa815798f7e60 [file] [log] [blame]
garciadeblas8d8cd992024-05-21 16:04:14 +02001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#######################################################################################
17
18# Location where credentials should be saved
19export CREDENTIALS_DIR=${CREDENTIALS_DIR:-../../../.credentials}; export CREDENTIALS_DIR=$(readlink -f "${CREDENTIALS_DIR}")
20
21# Minio version
22export MINIO_VERSION="${MINIO_VERSION:-v5.0.11}"
23
24# Minio tenant name
25export MINIO_TENANT_NAME=${MINIO_TENANT_NAME:-minio-osm-tenant}
26
27# Minio tenant capacity
28export MINIO_TENANT_CAPACITY=${MINIO_TENANT_CAPACITY:-10Gi}
29
30# Number of tenant servers
31export MINIO_TENANT_SERVERS=${MINIO_TENANT_SERVERS:-2}
32
33# Number of tenant volumes
34export MINIO_TENANT_VOLUMES=${MINIO_TENANT_VOLUMES:-4}
35
36# Expose with Ingress
37export MINIO_EXPOSE_CONSOLE=true
38export MINIO_EXPOSE_TENANT=true
garciadeblasb89a41f2025-09-09 13:07:50 +020039
40# Ingress classname
41export MINIO_INGRESS_CLASSNAME=${AUX_CLUSTER_INGRESS_CLASS:-nginx}