| 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 |
| garciadeblas | cf603f5 | 2025-06-04 11:57:28 +0200 | [diff] [blame] | 19 | export CREDENTIALS_DIR=${CREDENTIALS_DIR:-${OSM_HOME_DIR}/.credentials}; export CREDENTIALS_DIR=$(readlink -f "${CREDENTIALS_DIR}") |
| garciadeblas | 8d8cd99 | 2024-05-21 16:04:14 +0200 | [diff] [blame] | 20 | |
| 21 | # Base location where repos are cloned |
| garciadeblas | cf603f5 | 2025-06-04 11:57:28 +0200 | [diff] [blame] | 22 | export WORK_REPOS_DIR=${WORK_REPOS_DIR:-${OSM_HOME_DIR}/repos}; export WORK_REPOS_DIR=$(readlink -f "${WORK_REPOS_DIR}") |
| garciadeblas | 8d8cd99 | 2024-05-21 16:04:14 +0200 | [diff] [blame] | 23 | |
| 24 | # Locations where each relevant repo is cloned |
| 25 | export FLEET_REPO_DIR=${FLEET_REPO_DIR:-"${WORK_REPOS_DIR}/fleet-osm"} |
| 26 | export SW_CATALOGS_REPO_DIR=${SW_CATALOGS_REPO_DIR:-"${WORK_REPOS_DIR}/sw-catalogs-osm"} |
| 27 | |
| 28 | # Remove local folders prior to clone? |
| 29 | export REMOVE_LOCAL_DIR_BEFORE_CLONING=${REMOVE_LOCAL_DIR_BEFORE_CLONING:-"true"} |
| 30 | |
| 31 | # Gitea's default values file |
| 32 | export GITEA_CHART_VALUES_FILE=values-standalone-ingress-ssh2222.yaml |
| 33 | |
| garciadeblas | 3f37a3f | 2024-08-21 13:07:57 +0200 | [diff] [blame] | 34 | # Gitea's admin user |
| 35 | export GITEA_ADMINISTRATOR_USERNAME=${GITEA_ADMINISTRATOR_USERNAME:-osm-admin} |
| 36 | export GITEA_ADMINISTRATOR_TOKEN_NAME=${GITEA_ADMINISTRATOR_TOKEN_NAME:-admin-token} |
| 37 | |
| 38 | # Gitea's regular user |
| 39 | export GITEA_STD_USERNAME=${GITEA_STD_USERNAME:-osm-developer} |
| 40 | export GITEA_STD_TOKEN_NAME=${GITEA_STD_TOKEN_NAME:-developer-token} |
| 41 | |
| garciadeblas | 8d8cd99 | 2024-05-21 16:04:14 +0200 | [diff] [blame] | 42 | # Base name for age keys for management cluster |
| 43 | export AGE_KEY_NAME_MGMT=${AGE_KEY_NAME_MGMT:-age.mgmt} |
| 44 | |
| 45 | # Name of the project for the OSM administrator |
| 46 | export MGMT_PROJECT_NAME=${MGMT_PROJECT_NAME:-"osm_admin"} |