Skip to content

Commit

Permalink
Synching Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
prakarsh-dt committed Dec 7, 2023
1 parent 554911a commit 7d327b3
Show file tree
Hide file tree
Showing 6 changed files with 366 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,6 +1,6 @@
apiVersion: v2
name: devtron-operator
appVersion: 0.6.24
appVersion: 0.6.25
description: Chart to configure and install Devtron. Devtron is a Kubernetes Orchestration system.
keywords:
- Devtron
Expand All @@ -11,7 +11,7 @@ keywords:
- argocd
- Hyperion
engine: gotpl
version: 0.22.64
version: 0.22.65
sources:
- https://github.com/devtron-labs/charts
dependencies:
Expand Down
29 changes: 21 additions & 8 deletions charts/devtron/devtron-bom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ global:
runAsNonRoot: true

installer:
release: "v0.6.24"
release: "v0.6.25"
image: "quay.io/devtron/inception"
tag: "44b30917-185-13275"

components:
dashboard:
image: "quay.io/devtron/dashboard:94cb7168-325-19078"
image: "quay.io/devtron/dashboard:b880ad10-325-19906"
config:
extraConfigs:
USE_V2: "true"
Expand All @@ -25,16 +25,16 @@ components:
ENABLE_SCOPED_VARIABLES: "true"
ENABLE_CI_JOB: "true"
devtron:
image: "quay.io/devtron/hyperion:6822926b-280-19032"
cicdImage: "quay.io/devtron/devtron:6822926b-434-19035"
image: "quay.io/devtron/hyperion:95146ae5-280-19913"
cicdImage: "quay.io/devtron/devtron:95146ae5-434-19914"
customOverrides:
DEFAULT_CI_IMAGE: "quay.io/devtron/ci-runner:ad3af321-138-18662"
DEFAULT_CI_IMAGE: "quay.io/devtron/ci-runner:560e6867-138-19679"
argocdDexServer:
image: "ghcr.io/dexidp/dex:v2.30.2"
initContainer:
authenticator: "quay.io/devtron/authenticator:e414faff-393-13273"
kubelink:
image: "quay.io/devtron/kubelink:2dbe99a8-564-19001"
image: "quay.io/devtron/kubelink:59a19eb7-564-19917"
configs:
ENABLE_HELM_RELEASE_CACHE: "true"
MANIFEST_FETCH_BATCH_SIZE: "2"
Expand All @@ -53,7 +53,7 @@ components:
image: "quay.io/devtron/postgres:11.9.0-debian-10-r26"
armImage: "quay.io/devtron/postgres:11.9"
gitsensor:
image: "quay.io/devtron/git-sensor:b6c3ea0e-200-16327"
image: "quay.io/devtron/git-sensor:4f3b9a14-200-19136"
imagePullPolicy: "IfNotPresent"
serviceMonitor:
enabled: false
Expand Down Expand Up @@ -81,6 +81,19 @@ components:
dbconfig:
secretName: postgresql-postgresql
keyName: postgresql-password
nats:
image: nats:2.9.3-alpine
imagePullPolicy: IfNotPresent
reloader:
image: quay.io/devtron/nats-server-config-reloader:0.6.2
imagePullPolicy: IfNotPresent
metrics:
image: quay.io/devtron/prometheus-nats-exporter:0.9.0
imagePullPolicy: IfNotPresent
serviceMonitor:
enabled: false
persistence:
storage: 5Gi
migrator:
image: "quay.io/devtron/migrator:v4.16.2"
envVars:
Expand All @@ -106,7 +119,7 @@ workflowController:

security:
imageScanner:
image: "quay.io/devtron/image-scanner:ea03b0af-334-15158"
image: "quay.io/devtron/image-scanner:abb1e033-334-19909"

notifier:
image: "quay.io/devtron/notifier:d71bcbcd-372-18717"
4 changes: 2 additions & 2 deletions charts/devtron/templates/app-sync-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
{{- end }}
containers:
- name: chart-sync
image: quay.io/devtron/chart-sync:0e8c785e-373-16172
image: quay.io/devtron/chart-sync:98957687-150-19133
{{- if and $.Values.global $.Values.global.containerSecurityContext }}
securityContext:
{{- toYaml $.Values.global.containerSecurityContext | nindent 10 }}
Expand Down Expand Up @@ -80,7 +80,7 @@ spec:
{{- end }}
containers:
- name: chart-sync
image: quay.io/devtron/chart-sync:0e8c785e-373-16172
image: quay.io/devtron/chart-sync:98957687-150-19133
{{- if and $.Values.global $.Values.global.containerSecurityContext }}
securityContext:
{{- toYaml $.Values.global.containerSecurityContext | nindent 14 }}
Expand Down
5 changes: 4 additions & 1 deletion charts/devtron/templates/devtron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ data:
PG_DATABASE: orchestrator
DEX_HOST: http://argocd-dex-server.devtroncd
DEX_PORT: "5556"
APP_SYNC_IMAGE: "quay.io/devtron/chart-sync:0e8c785e-373-16172"
APP_SYNC_IMAGE: "quay.io/devtron/chart-sync:98957687-150-19133"
{{- if $.Values.installer.modules }}
{{- if has "cicd" $.Values.installer.modules }}
RUN_HELM_INSTALL_IN_ASYNC_MODE_HELM_APPS: "true"
ENABLE_ASYNC_INSTALL_DEVTRON_CHART: "true"
DEVTRON_CHART_INSTALL_REQUEST_TIMEOUT: "6"
CONSUMER_CONFIG_JSON: '{"DEVTRON-CHART-INSTALL-DURABLE":{"natsMsgProcessingBatchSize":1}}'
{{- if $.Values.configs }}
{{- if or ($.Values.minio.enabled) ($.Values.configs.BLOB_STORAGE_PROVIDER) }}
BLOB_STORAGE_ENABLED: "true"
Expand Down
Loading

0 comments on commit 7d327b3

Please sign in to comment.