File tree Expand file tree Collapse file tree 4 files changed +28
-2
lines changed
Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 0.16.7
4+
5+ ** Release date:** 2023-08-16
6+
7+ ![ AppVersion: 1.21.0] ( https://img.shields.io/static/v1?label=AppVersion&message=1.21.0&color=success&logo= )
8+ ![ Helm: v3] ( https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm )
9+
10+
11+ * add volume mounts to clowder extractors
12+
313## 0.16.6
414
515** Release date:** 2023-04-10
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ description: >
1313# This is the chart version. This version number should be incremented each time you make changes
1414# to the chart and its templates, including the app version.
1515# Versions are expected to follow Semantic Versioning (https://semver.org/)
16- version : 0.16.6
16+ version : 0.16.7
1717
1818# This is the version number of the application being deployed. This version number should be
1919# incremented each time you make changes to the application. Versions are not expected to
@@ -55,4 +55,4 @@ annotations:
5555 - name: Helm Chart
5656 url: https://github.com/clowder-framework/clowder-helm
5757 artifacthub.io/changes : |
58- - "use data folder with S3 "
58+ - "add volume mounts to clowder extractors "
Original file line number Diff line number Diff line change 4141 containers :
4242 - name : extractor
4343 image : {{ .image | quote }}
44+ volumeMounts :
45+ {{- with .extraVolumeMounts }}
46+ {{- . | toYaml | nindent 12 }}
47+ {{- end }}
4448 imagePullPolicy : {{ default $.Values.image.pullPolicy .pullPolicy }}
4549 env :
4650 - name : RABBITMQ_URI
5559 resources :
5660 {{- toYaml .resources | nindent 12 }}
5761{{- end }}
62+ {{- with .extraVolumes }}
63+ volumes :
64+ {{- . | toYaml | nindent 8 }}
65+ {{- end }}
5866 {{- with .nodeSelector }}
5967 nodeSelector :
6068 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -136,6 +136,14 @@ extractors:
136136 # env:
137137 # - name: extractor.bump.sh
138138 # value: "bar"
139+ extraVolumes : []
140+ # - name: input
141+ # persistentVolumeClaim:
142+ # claimName: input
143+ extraVolumeMounts : []
144+ # - name: input
145+ # mountPath: /input
146+ # readOnly: true
139147 image-preview :
140148 image : clowder/extractors-image-preview:2.4.2
141149 image-metadata :
You can’t perform that action at this time.
0 commit comments