Skip to content

Commit

Permalink
Adding sleep flag to pod-template
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Scholl <[email protected]>
  • Loading branch information
mikescholl-sysdig authored and poiana committed Jul 20, 2022
1 parent 8898864 commit a2a7618
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion event-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ numbering uses [semantic versioning](http://semver.org).

### Major Changes

* Initial release of event-generator Helm Chart
* Initial release of event-generator Helm Chart

## v0.1.1

### Minor Changes

* Adding `-sleep` flag to the `pod-template.yaml`
2 changes: 1 addition & 1 deletion event-generator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# 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.1.0
version: 0.1.1

# 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
Expand Down
3 changes: 3 additions & 0 deletions event-generator/templates/pod-template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ spec:
{{- if .Values.config.loop }}
- --loop
{{- end }}
{{- if .Values.config.sleep }}
- --sleep={{- .Values.config.sleep }}
{{- end }}
{{- if .Values.config.grpc.enabled }}
- --grpc-unix-socket={{- .Values.config.grpc.bindAddress }}
{{- end }}
Expand Down

0 comments on commit a2a7618

Please sign in to comment.