Skip to content

Commit

Permalink
New Devtron-operator release
Browse files Browse the repository at this point in the history
  • Loading branch information
prakarsh-dt committed Feb 26, 2021
1 parent 1669b3f commit 94f7724
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
4 changes: 2 additions & 2 deletions charts/devtron/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: devtron-operator
appVersion: 0.1.0
appVersion: 0.0.1
description: Chart to configure and install Devtron. Devtron is a Kubernetes Orchestration system.
keywords:
- Devtron
Expand All @@ -8,7 +8,7 @@ keywords:
- K8s
- Deployment
engine: gotpl
version: 0.10.1
version: 0.10.2
sources:
- https://github.com/devtron-labs/charts
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/devtron/templates/devtron-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ metadata:
name: installer-devtron
namespace: devtroncd
spec:
url: {{ .Values.installer.url }}
url: https://raw.githubusercontent.com/{{ .Values.installer.repo }}/{{ .Values.installer.release }}/installation-script
40 changes: 22 additions & 18 deletions charts/devtron/values.yaml
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"

0 comments on commit 94f7724

Please sign in to comment.