Skip to content

Commit

Permalink
clowder/pyclowder release
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Mar 7, 2022
1 parent c80c919 commit b89e228
Show file tree
Hide file tree
Showing 5 changed files with 345 additions and 14 deletions.
7 changes: 4 additions & 3 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ description: >
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.14.6
version: 0.15.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 1.19.4
appVersion: 1.20.0

# List of people that maintain this helm chart.
maintainers:
Expand Down Expand Up @@ -55,4 +55,5 @@ annotations:
- name: Helm Chart
url: https://github.com/clowder-framework/clowder-helm
artifacthub.io/changes: |
- don't set traefik ingress annotionion, it breaks TLS
- update clowder to 1.20.0
- update many extractors (update to pyclowder)
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ extraConfig:
## ChangeLog
### 0.15.0
- Update clowder to version [1.20.0](https://github.com/clowder-framework/clowder/releases/tag/v1.20.0)
- Update extractors for pyclowder version [2.5.1](https://github.com/clowder-framework/pyclowder/releases/tag/2.5.1)
### 0.14.6
- don't set traefik ingress annotionion, it breaks TLS
Expand Down
4 changes: 2 additions & 2 deletions update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ done

# ZIP EXTRACTORS
for x in extract2folder inventory; do
URL="https://raw.githubusercontent.com/clowder-framework/extractors-zip/master/${x}/extractor_info.json"
URL="https://raw.githubusercontent.com/clowder-framework/extractors-zip/main/${x}/extractor_info.json"
VERSION=$(curl -s ${URL} | awk '/"version":/ { print $2}' | sed 's/[",]//g')
sed -i~ "s/extractors-$x:.*/extractors-$x:${VERSION}/" values.yaml
done

# ANTI-VIRUS EXTRACTORS
VERSION=$(curl -s https://raw.githubusercontent.com/clowder-framework/extractors-clamav/master/extractor_info.json | awk '/"version":/ { print $2}' | sed 's/[",]//g')
VERSION=$(curl -s https://raw.githubusercontent.com/clowder-framework/extractors-clamav/main/extractor_info.json | awk '/"version":/ { print $2}' | sed 's/[",]//g')
sed -i~ "s/extractors-clamav:.*/extractors-clamav:${VERSION}/" values.yaml

# GEOSPATIAL EXTRACTORS
Expand Down
16 changes: 7 additions & 9 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,25 +126,25 @@ smtp:
## env : additional environment variables to pass to extractor.
extractors:
file-digest:
image: clowder/extractors-digest:2.2.0
image: clowder/extractors-digest:2.2.1
#enabled: true
#replicaCount: 1
#pullPolicy: Always
# env:
# - name: extractor.bump.sh
# value: "bar"
image-preview:
image: clowder/extractors-image-preview:2.2.1
image: clowder/extractors-image-preview:2.2.2
image-metadata:
image: clowder/extractors-image-metadata:2.1.6
image: clowder/extractors-image-metadata:2.1.7
audio-preview:
image: clowder/extractors-audio-preview:2.1.6
image: clowder/extractors-audio-preview:2.1.7
pdf-preview:
image: clowder/extractors-pdf-preview:2.1.6
image: clowder/extractors-pdf-preview:2.1.7
video-preview:
image: clowder/extractors-video-preview:2.2.0
image: clowder/extractors-video-preview:2.2.1
clamav:
image: clowder/extractors-clamav:1.0.3
image: clowder/extractors-clamav:1.0.6

# ----------------------------------------------------------------------
# DATA STORAGE
Expand Down Expand Up @@ -235,8 +235,6 @@ monitor:
# nodePort: 30000
port: 9999

# ----------------------------------------------------------------------

# ----------------------------------------------------------------------
# clowder requires mongodb to be able to run
#
Expand Down
Loading

0 comments on commit b89e228

Please sign in to comment.