File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ### 0.16.1
9+ - fix for when ` enable: false ` for extractors
10+
811### 0.16.0
912- update clowder to [ 1.21.0] ( https://github.com/clowder-framework/clowder/releases/tag/v1.21.0 )
1013- update all extractors to incorperate pyclowder 2.6.0
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.0
16+ version : 0.16.1
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- - release clowder 1.21.0
58+ - fix for when `enable: false` for extractors
Original file line number Diff line number Diff line change 33{{- $labels := include "clowder.labels" . }}
44{{- $rabbitmqURI := include "clowder.rabbitmquri" . }}
55{{- range $key, $val := .Values.extractors }}
6- {{- if (default true . enabled) }}
6+ {{- if or .enabled (not (hasKey . " enabled") ) }}
77---
88apiVersion : apps/v1
99kind : Deployment
You can’t perform that action at this time.
0 commit comments