-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1669b3f
commit 94f7724
Showing
3 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
installer: | ||
url: "https://raw.githubusercontent.com/devtron-labs/devtron-installation-script/main/installation-script" | ||
#Use secrets in plaintext, they'll be encoded to base64 automatically test. | ||
repo: "devtron-labs/devtron-installation-script" | ||
release: "main" | ||
#Use secrets in plaintext, they'll be encoded to base64 automatically. | ||
secrets: | ||
data: | ||
- key: POSTGRESQL_PASSWORD | ||
value: "change-me" | ||
- key: GIT_TOKEN | ||
value: "XXXXXXXXXXXXXXXXXXXX" | ||
- key: WEBHOOK_TOKEN | ||
value: "XXXXXXXXXXXXXXXXXXXX" | ||
|
||
# Token with read write access to AZURE_BLOB_CONTAINER_CI_LOG and AZURE_BLOB_CONTAINER_CI_CACHE ,optional, if not | ||
# provided pod identity will be used for authentication | ||
# - key: AZURE_ACCOUNT_KEY | ||
# value: "#########" | ||
|
||
configs: | ||
BASE_URL_SCHEME: "http" | ||
#url without scheme and without trailing '/' | ||
BASE_URL: "www.example.com" | ||
DEFAULT_CD_LOGS_BUCKET_REGION: "change-me" | ||
DEFAULT_CACHE_BUCKET: "change-me" | ||
DEFAULT_CACHE_BUCKET_REGION: "change-me" | ||
DEFAULT_BUILD_LOGS_BUCKET: "change-me" | ||
CHARTMUSEUM_STORAGE_AMAZON_BUCKET: "" | ||
CHARTMUSEUM_STORAGE_AMAZON_REGION: "" | ||
EXTERNAL_SECRET_AMAZON_REGION: "" | ||
PROMETHEUS_URL: "http://change-me/prometheus" | ||
#GIT_HOST: "change-me" | ||
BLOB_STORAGE_PROVIDER: "MINIO" #AZURE|AWS|MINIO | ||
# Amazon AWS S3 bucket and region for storing Build-cache for faster build process. Mandatory if BLOB_STORAGE_PROVIDER is AWS. | ||
#DEFAULT_CACHE_BUCKET: "us-east-1" #Do not include s3:// | ||
#DEFAULT_CACHE_BUCKET_REGION: "change-me" | ||
# Amazon AWS S3 bucket and region for storing Build-logs. Mandatory if BLOB_STORAGE_PROVIDER is AWS. | ||
#DEFAULT_BUILD_LOGS_BUCKET: "change-me" #Do not include s3:// | ||
#DEFAULT_CD_LOGS_BUCKET_REGION: "us-east-1" | ||
# Amazon AWS Secret Region if you will be using AWS Secret manager for storing secrets. | ||
#EXTERNAL_SECRET_AMAZON_REGION: "" | ||
# Azure Blob storage Info for storing Build Logs and Build cache for faster build process. | ||
#AZURE_ACCOUNT_NAME: "test-account" | ||
#AZURE_BLOB_CONTAINER_CI_LOG: "ci-log-container" | ||
#AZURE_BLOB_CONTAINER_CI_CACHE: "ci-cache-container" |