Skip to content

Commit 42bb653

Browse files
authored
RELEASE: PR for v0.3.1 (#888)
* Updated latest image of devtron in the installer * Intermittent NATS issue fix (#889) * NATS issue fix * Nats streaming issue fix * nats issue fix
1 parent 2f33bfd commit 42bb653

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
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.3.0/manifests/installation-script
7+
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.3.1/manifests/installation-script

manifests/installation-script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LTAG="v0.3.0";
1+
LTAG="v0.3.1";
22
REPO_RAW_URL="https://raw.githubusercontent.com/devtron-labs/devtron/";
33

44
operatorSecret = kubectl get secret -n devtroncd devtron-operator-secret;

manifests/version.txt

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

manifests/yamls/devtron.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ spec:
153153
serviceAccountName: devtron
154154
containers:
155155
- name: devtron
156-
image: "quay.io/devtron/devtron:36a6e742-146-5786"
156+
image: "quay.io/devtron/devtron:2f33bfda-146-5797"
157157
imagePullPolicy: IfNotPresent
158158
ports:
159159
- name: devtron

manifests/yamls/migrator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
- name: MIGRATE_TO_VERSION
4141
value: "0"
4242
- name: GIT_HASH
43-
value: 36a6e742a396d3c2700dd28898667f1ad55fcdce
43+
value: 2f33bfdae756806fd31cd1078f192696e334f38c
4444
envFrom:
4545
- secretRef:
4646
name: postgresql-migrator

manifests/yamls/nats-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ spec:
113113

114114
app.kubernetes.io/name: nats
115115
app.kubernetes.io/instance: devtron-nats
116-
replicas: 3
116+
replicas: 1
117117
serviceName: devtron-nats
118118
template:
119119
metadata:

manifests/yamls/nats-streaming.yaml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,24 @@ spec:
102102

103103
affinity:
104104
podAntiAffinity:
105-
requiredDuringSchedulingIgnoredDuringExecution:
106-
- labelSelector:
107-
matchExpressions:
108-
- key: app
109-
operator: In
110-
values:
111-
- devtron-stan
112-
topologyKey: kubernetes.io/hostname
105+
# requiredDuringSchedulingIgnoredDuringExecution:
106+
# - labelSelector:
107+
# matchExpressions:
108+
# - key: app
109+
# operator: In
110+
# values:
111+
# - devtron-stan
112+
# topologyKey: kubernetes.io/hostname
113+
preferredDuringSchedulingIgnoredDuringExecution:
114+
- weight: 100
115+
podAffinityTerm:
116+
labelSelector:
117+
matchExpressions:
118+
- key: app
119+
operator: In
120+
values:
121+
- devtron-stan
122+
topologyKey: kubernetes.io/hostname
113123
containers:
114124
####################
115125
# NATS Streaming #

0 commit comments

Comments
 (0)