Skip to content

Commit 3372142

Browse files
committed
fix ability to disable extractor
1 parent 9a798f2 commit 3372142

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and 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

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.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

templates/extractors/clowder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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
---
88
apiVersion: apps/v1
99
kind: Deployment

0 commit comments

Comments
 (0)