Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/in-clustercd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: devtron-in-clustercd
description: Helm chart to deploy devtron-in-clustercd to run pre and post deployment in application/target cluster.
version: 0.10.1
version: 0.10.2
appVersion: 0.1.0
apiVersion: v1
maintainers:
- email: devops@devtron.ai
name: Devtron Devops Team
- email: ajay@devtron.ai
name: Ajay
name: Ajay
3 changes: 3 additions & 0 deletions charts/in-clustercd/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.name
{{- with .Values.workflow.additionalWorkflowEnv }}
{{- toYaml . | nindent 8 }}
{{- end }}
image: {{ .Values.workflow.image }}
name: workflow-controller
resources:
Expand Down
45 changes: 25 additions & 20 deletions charts/in-clustercd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,31 @@

# Configuration for workflow-controller
workflow:
config:
parallelism: 50
artifactRepository:
archiveLogs: true
instanceID: devtron-runner
s3:
endpoint: s3.amazonaws.com
bucket: devtron-logs-test
region: us-east-1
keyFormat: "logs-v1/{{workflow.name}}"
#keep it uncommented if logs will pushing through AWS node role permission(recommended)
# accessKeySecret:
# name: workflow-minio-cred
# key: accessKey
# secretKeySecret:
# name: workflow-minio-cred
# key: secretKey
containerRuntimeExecutor: pns
executor:
imagePullPolicy: Always
config: {}
# parallelism: 50
# artifactRepository:
# archiveLogs: true
# instanceID: devtron-runner
# s3:
# endpoint: s3.amazonaws.com
# bucket: devtron-logs-test
# region: us-east-1
# keyFormat: "logs-v1/{{workflow.name}}"
# # keep it uncommented if logs will pushing through AWS node role permission(recommended)
# accessKeySecret:
# name: workflow-minio-cred
# key: accessKey
# secretKeySecret:
# name: workflow-minio-cred
# key: secretKey
# containerRuntimeExecutor: pns
# executor:
# imagePullPolicy: Always
# # specify additional env for workflow-controller
additionalWorkflowEnv : []
# For example we can pass the env as below
# - name: POD_NAMES
# value: "v1"

# Access key and Secret key of AWS account to push logs to above S3 bucket if not provided it will use node role.
use_access_secret_key: false
Expand Down