-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(chart/data-prepper) Remove demo pipeline from values, add explici…
…t demo value (#634) * Remove demo pipeline from values file Signed-off-by: Jan Høydahl <[email protected]> * Fixing Minor Linting Issues Signed-off-by: Aaron Layfield <[email protected]> * 0.3.0 Signed-off-by: Aaron Layfield <[email protected]> * Make demo pipeline default to true when no other explicit pipeline is configured. Signed-off-by: Jan Høydahl <[email protected]> --------- Signed-off-by: Jan Høydahl <[email protected]> Signed-off-by: Aaron Layfield <[email protected]> Co-authored-by: Jan Høydahl <[email protected]> Co-authored-by: Aaron Layfield <[email protected]>
- Loading branch information
1 parent
78833d6
commit 82bd2d2
Showing
8 changed files
with
86 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{{- if eq "true" (include "data-prepper.demoPipeline" .) }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "data-prepper.fullname" . }}-demo-pipeline | ||
labels: | ||
{{- include "data-prepper.labels" . | nindent 4 }} | ||
type: Opaque | ||
stringData: | ||
pipelines.yaml: | | ||
simple-sample-pipeline: | ||
workers: 2 # the number of workers | ||
delay: 5000 # in milliseconds, how long workers wait between read attempts | ||
source: | ||
random: {} | ||
buffer: | ||
bounded_blocking: | ||
buffer_size: 1024 # max number of records the buffer accepts | ||
batch_size: 256 # max number of records the buffer drains after each read | ||
processor: | ||
- string_converter: | ||
upper_case: true | ||
sink: | ||
- stdout: {} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters