Skip to content

Commit d76d2f2

Browse files
authored
Merge pull request #9 from minump/extractors-volume-mount
* added volume mounts to extractors * added extravolumes in values * updated changelog
2 parents d3a2266 + 2b4b957 commit d76d2f2

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

templates/extractors/deployment.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ spec:
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
@@ -55,6 +59,10 @@ spec:
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 }}

values.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)