| 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 | # Base inputs, unlikely to change |
| 19 | export GITEA_ENV_NAME=${GITEA_ENV_NAME:-gitea-at-osm} |
| 20 | |
| 21 | # Chart values, selecting the mode of deployment |
| 22 | export GITEA_CHART_VALUES_FILE=${GITEA_CHART_VALUES_FILE:-values-standalone.yaml} |
| 23 | |
| 24 | # Location where credentials should be saved |
| 25 | export CREDENTIALS_DIR=${CREDENTIALS_DIR:-../../../.credentials}; export CREDENTIALS_DIR=$(readlink -f "${CREDENTIALS_DIR}") |
| 26 | |
| 27 | # Admin user |
| 28 | export GITEA_ADMINISTRATOR_USERNAME=${GITEA_ADMINISTRATOR_USERNAME:-osm-admin} |
| 29 | #--------- CHANGE DEFAULT: |
| 30 | export GITEA_ADMINISTRATOR_PASSWORD=${GITEA_ADMINISTRATOR_PASSWORD:-PleaseChange123%} |
| 31 | #------------------------ |
| 32 | export GITEA_ADMINISTRATOR_TOKEN_NAME=${GITEA_ADMINISTRATOR_TOKEN_NAME:-admin-token} |
| 33 | |
| 34 | # Regular user |
| 35 | export GITEA_STD_USERNAME=${GITEA_STD_USERNAME:-osm-developer} |
| 36 | #--------- CHANGE DEFAULT: |
| 37 | export GITEA_STD_USER_PASS=${GITEA_STD_USER_PASS:-PleaseChange123!} |
| 38 | #------------------------ |
| 39 | export GITEA_STD_TOKEN_NAME=${GITEA_STD_TOKEN_NAME:-developer-token} |
| 40 | |
| 41 | # (optional) Organization name |
| 42 | export GITEA_EXTRA_ORGANIZATION=${GITEA_EXTRA_ORGANIZATION:-OSM} |