Skip to content

Commit 774edb9

Browse files
prakarsh-dtpawan-59arushi09-hubArushi Shukla
authored
RELEASE: PR for v0.2.29 (#746)
* Updated latest image of dashboard in the installer * Updated latest image of devtron in the installer * New workflow (#747) * changed workflow.yaml * updated latest values of v3.0.10 * Updated LTAG with branch name * updated installation script for minio-cred secret in devtron-cd namespace * updated workflow.yaml with latest vlaues * updated CI_NODE_LABEL_SELECTOR key in data * updated yaml separator on installation script * Update workflow.yaml * upodated LTAG from new-workflow to v0.2.27 * Update installation-script * Added & tested new chart repos , updated backofflimit in migrator.yaml (#748) * added sql migrations * sql migration for new chart repos * sql migrations for new chart repos * sql migrations for new chart repos * sql migrations added for new chart repos * sql migrations for chart repos * new sql migrations added * new migrations added for chart repos * updated code for main repo * backofflimit updated in migrator.yaml Co-authored-by: Arushi Shukla <[email protected]> * Update devtron.yaml Co-authored-by: Pawan Kumar <[email protected]> Co-authored-by: Arushi shukla <[email protected]> Co-authored-by: Arushi Shukla <[email protected]>
1 parent 3843880 commit 774edb9

File tree

8 files changed

+169
-79
lines changed

8 files changed

+169
-79
lines changed

manifests/install/devtron-installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ metadata:
44
name: installer-devtron
55
namespace: devtroncd
66
spec:
7-
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.2.28/manifests/installation-script
7+
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.2.29/manifests/installation-script

manifests/installation-script

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LTAG="v0.2.28";
1+
LTAG="v0.2.29";
22
REPO_RAW_URL="https://raw.githubusercontent.com/devtron-labs/devtron/";
33

44
operatorSecret = kubectl get secret -n devtroncd devtron-operator-secret;
@@ -363,7 +363,23 @@ helmRepo = `- name: incubator
363363
url: https://devtron-charts.s3.us-east-2.amazonaws.com/charts
364364
- name: stable
365365
type: helm
366-
url: https://charts.helm.sh/stable`;
366+
url: https://charts.helm.sh/stable
367+
- name: nginx-ingress
368+
type: helm
369+
url: https://kubernetes.github.io/ingress-nginx
370+
- name: elastic
371+
type: helm
372+
url: https://helm.elastic.co
373+
- name: bitnami
374+
type: helm
375+
url: https://charts.bitnami.com/bitnami
376+
- name: prometheus-community
377+
type: helm
378+
url: https://prometheus-community.github.io/helm-charts
379+
- name: jetstack
380+
type: helm
381+
url: https://charts.jetstack.io`;
382+
367383

368384
kubeYamlEdit(argocd, `data.repositories`, helmRepo, `/ConfigMap//argocd-cm` );
369385
#kubeYamlEdit(argocd, "data.url", baseURLScheme + "://" + baseURL, `/ConfigMap//argocd-cm`);
@@ -608,6 +624,20 @@ metadata:
608624
name: workflow-minio-cred
609625
namespace: devtron-ci
610626
type: Opaque
627+
---
628+
apiVersion: v1
629+
data:
630+
accessKey: `;
631+
workflowSecret = workflowSecret + azureAccountNameEncoded;
632+
workflowSecret = workflowSecret + `
633+
secretKey: `;
634+
workflowSecret = workflowSecret + azureAccountKey;
635+
workflowSecret = workflowSecret + `
636+
kind: Secret
637+
metadata:
638+
name: workflow-minio-cred
639+
namespace: devtron-cd
640+
type: Opaque
611641
`;
612642
#----------------- workflow secret end
613643

@@ -630,6 +660,20 @@ metadata:
630660
name: workflow-minio-cred
631661
namespace: devtron-ci
632662
type: Opaque
663+
---
664+
apiVersion: v1
665+
data:
666+
accessKey: `;
667+
workflowSecret = workflowSecret + minioAccesskey;
668+
workflowSecret = workflowSecret + `
669+
secretKey: `;
670+
workflowSecret = workflowSecret + minioSecretkey;
671+
workflowSecret = workflowSecret + `
672+
kind: Secret
673+
metadata:
674+
name: workflow-minio-cred
675+
namespace: devtron-cd
676+
type: Opaque
633677
`;
634678
#----------------- workflow secret end
635679

manifests/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.2.28
1+
v0.2.29

manifests/yamls/dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ spec:
230230
- name: envoy-config-volume
231231
mountPath: /etc/envoy-config/
232232
- name: dashboard
233-
image: "quay.io/devtron/dashboard:990e40b4-136-5308"
233+
image: "quay.io/devtron/dashboard:b4cbd8bb-136-5337"
234234
imagePullPolicy: IfNotPresent
235235
ports:
236236
- name: app

manifests/yamls/devtron.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ data:
4949
CD_LIMIT_CI_MEM: "3G"
5050
CD_REQ_CI_CPU: "0.5"
5151
CD_REQ_CI_MEM: "1G"
52-
CD_NODE_TAINTS_KEY: ""
52+
CD_NODE_TAINTS_KEY: "dedicated"
53+
CD_NODE_LABEL_SELECTOR: "kubernetes.io/os=linux"
5354
CD_WORKFLOW_SERVICE_ACCOUNT: "cd-runner"
5455
DEFAULT_BUILD_LOGS_KEY_PREFIX: "devtron"
5556
DEFAULT_CD_ARTIFACT_KEY_LOCATION: "devtron/cd-artifacts"
56-
CD_NODE_TAINTS_VALUE: ""
57+
CD_NODE_TAINTS_VALUE: "ci"
5758
CD_ARTIFACT_LOCATION_FORMAT: "%d/%d.zip"
5859
DEFAULT_CD_NAMESPACE: "devtron-cd"
5960
DEFAULT_CI_IMAGE: "quay.io/devtron/ci-runner:3ce0f62e-138-5031"
@@ -152,7 +153,7 @@ spec:
152153
serviceAccountName: devtron
153154
containers:
154155
- name: devtron
155-
image: "quay.io/devtron/devtron:aa4984e3-146-5312"
156+
image: "quay.io/devtron/devtron:38438803-146-5340"
156157
imagePullPolicy: IfNotPresent
157158
ports:
158159
- name: devtron

manifests/yamls/migrator.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ spec:
4040
- name: MIGRATE_TO_VERSION
4141
value: "0"
4242
- name: GIT_HASH
43-
value: aa4984e3bc562e15eb6a7d18a4368b8c35c2a2d4
43+
value: 384388037b867800248d8319d51d8b6357de4db9
4444
envFrom:
4545
- secretRef:
4646
name: postgresql-migrator
4747
restartPolicy: OnFailure
48-
backoffLimit: 10
48+
backoffLimit: 20
4949
activeDeadlineSeconds: 1500
5050
---
5151
apiVersion: batch/v1
@@ -83,7 +83,7 @@ spec:
8383
- secretRef:
8484
name: postgresql-migrator
8585
restartPolicy: OnFailure
86-
backoffLimit: 1
86+
backoffLimit: 20
8787
activeDeadlineSeconds: 1500
8888
---
8989
apiVersion: batch/v1
@@ -121,7 +121,7 @@ spec:
121121
- secretRef:
122122
name: postgresql-migrator
123123
restartPolicy: OnFailure
124-
backoffLimit: 1
124+
backoffLimit: 20
125125
activeDeadlineSeconds: 1500
126126
---
127127
apiVersion: batch/v1
@@ -159,7 +159,7 @@ spec:
159159
- secretRef:
160160
name: postgresql-migrator
161161
restartPolicy: OnFailure
162-
backoffLimit: 1
162+
backoffLimit: 20
163163
activeDeadlineSeconds: 1500
164164
---
165165
apiVersion: batch/v1beta1

0 commit comments

Comments
 (0)