| garciadeblas | 8d8cd99 | 2024-05-21 16:04:14 +0200 | [diff] [blame] | 1 | ####################################################################################### |
| 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 |
| 19 | export CREDENTIALS_DIR=${CREDENTIALS_DIR:-../../../.credentials}; export CREDENTIALS_DIR=$(readlink -f "${CREDENTIALS_DIR}") |
| 20 | |
| 21 | # Minio version |
| 22 | export MINIO_VERSION="${MINIO_VERSION:-v5.0.11}" |
| 23 | |
| 24 | # Minio tenant name |
| 25 | export MINIO_TENANT_NAME=${MINIO_TENANT_NAME:-minio-osm-tenant} |
| 26 | |
| 27 | # Minio tenant capacity |
| 28 | export MINIO_TENANT_CAPACITY=${MINIO_TENANT_CAPACITY:-10Gi} |
| 29 | |
| 30 | # Number of tenant servers |
| 31 | export MINIO_TENANT_SERVERS=${MINIO_TENANT_SERVERS:-2} |
| 32 | |
| 33 | # Number of tenant volumes |
| 34 | export MINIO_TENANT_VOLUMES=${MINIO_TENANT_VOLUMES:-4} |
| 35 | |
| 36 | # Expose with Ingress |
| 37 | export MINIO_EXPOSE_CONSOLE=true |
| 38 | export MINIO_EXPOSE_TENANT=true |
| garciadeblas | b89a41f | 2025-09-09 13:07:50 +0200 | [diff] [blame] | 39 | |
| 40 | # Ingress classname |
| 41 | export MINIO_INGRESS_CLASSNAME=${AUX_CLUSTER_INGRESS_CLASS:-nginx} |