File tree 4 files changed +21
-0
lines changed
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1
1
## Enhancements
2
2
- feat: added support for relabelings in servicemonitor (#6562 )
3
3
## Bugs
4
+ - fix: rest handler missing return statements (#6545 )
5
+ - fix: chart name fixed in chart reference table (#6543 )
6
+ - fix: error pg.ErrNoRow on base deployment template update (#6533 )
4
7
## Others
5
8
- chore: release target installations scripts (#6529 )
6
9
- sync: Main sync develop (#6565 )
7
10
- misc: append response time in audit log (#6566 )
8
11
- misc: Update create-release.yml (#6564 )
12
+ - misc: updated ucid-cm and added prehook (#6557 )
13
+ - chore: update auto-label.yml (#6372 )
14
+ - misc: Approval bypass v2 oss (#6510 )
15
+ - chore: pipeline timeline alter sql (#6541 )
16
+ - sync: vendor update (#6540 )
Original file line number Diff line number Diff line change @@ -137,4 +137,5 @@ spec:
137
137
app : kubelink
138
138
sessionAffinity : None
139
139
type : ClusterIP
140
+ clusterIP : None
140
141
{{- end }}
Original file line number Diff line number Diff line change @@ -125,9 +125,20 @@ data:
125
125
{{- if lt ($.Values.minio.replicaCount | int) 4 }}
126
126
createBucket devtron-ci-log none false
127
127
createBucket devtron-ci-cache none false
128
+ {{- if eq ($.Values.minio.retention | int) 0 }}
129
+ {{- else }}
130
+ ${MC} ilm add myminio/devtron-ci-cache --expiry-days {{ $.Values.minio.retention }}
131
+ ${MC} ilm ls myminio/devtron-ci-cache
132
+ {{- end }}
128
133
{{- else }}
129
134
createBucket devtron-ci-log none false true
130
135
createBucket devtron-ci-cache none false true
136
+ {{- if eq ($.Values.minio.retention | int) 0 }}
137
+ echo "No Lifecycle Policy Specified"
138
+ {{- else }}
139
+ ${MC} ilm add myminio/devtron-ci-cache --expiry-days {{ $.Values.minio.retention }}
140
+ ${MC} ilm ls myminio/devtron-ci-cache
141
+ {{- end }}
131
142
{{- end }}
132
143
{{- end }}
133
144
---
Original file line number Diff line number Diff line change @@ -449,6 +449,7 @@ notifier:
449
449
# Set enable to true if you want to use minio for storing cache and logs
450
450
minio :
451
451
enabled : false
452
+ retention : 30
452
453
replicaCount : 1
453
454
image : " minio:RELEASE.2021-02-14T04-01-33Z"
454
455
imagePullPolicy : IfNotPresent
You can’t perform that action at this time.
0 commit comments