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