Skip to content

Commit

Permalink
Merge pull request #315 from intelops/consumer
Browse files Browse the repository at this point in the history
consumer helm change
  • Loading branch information
vijeyash1 authored Feb 9, 2024
2 parents 78136fb + f016cb0 commit 60a04a3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/client/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: 1.1.17
version: 1.1.18

# 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
20 changes: 20 additions & 0 deletions charts/client/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,26 @@ spec:
value: {{ .Values.opentelemetry.url }}
- name : APPLICATION_NAME
value : {{ .Values.opentelemetry.appName }}
- name : KETALL_EVENTS_CONSUMER
value : {{ .Values.consumer.ketallconsumer }}
- name : RAKEES_METRICS_CONSUMER
value : {{ .Values.consumer.rakeesconsumer }}
- name : OUTDATED_EVENTS_CONSUMER
value : {{ .Values.consumer.outdatedconsumer }}
- name : DEPRECATED_API_CONSUMER
value : {{ .Values.consumer.deprecatedconsumer }}
- name : DELETED_API_CONSUMER
value : {{ .Values.consumer.deletedconsumer }}
- name : KUBVIZ_EVENTS_CONSUMER
value : {{ .Values.consumer.kubvizconsumer }}
- name : KUBSCORE_CONSUMER
value : {{ .Values.consumer.kubscoreconsumer }}
- name : TRIVY_CONSUMER
value : {{ .Values.consumer.trivyconsumer }}
- name : TRIVY_IMAGE_CONSUMER
value : {{ .Values.consumer.trivyimageconsumer }}
- name : TRIVY_SBOM_CONSUMER
value : {{ .Values.consumer.trivysbomconsumer }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
11 changes: 11 additions & 0 deletions charts/client/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,14 @@ opentelemetry:
url: "otelcollector.local"
appName: "kubviz"

consumer:
ketallconsumer: "KETALL_EVENTS_CONSUMER"
rakeesconsumer: "RAKEES_METRICS_CONSUMER"
outdatedconsumer: "OUTDATED_EVENTS_CONSUMER"
deprecatedconsumer: "DEPRECATED_API_CONSUMER"
deletedconsumer: "DELETED_API_CONSUMER"
kubvizconsumer: "KUBVIZ_EVENTS_CONSUMER"
kubscoreconsumer: "KUBSCORE_CONSUMER"
trivyconsumer: "TRIVY_CONSUMER"
trivyimageconsumer: "TRIVY_IMAGE_CONSUMER"
trivysbomconsumer: "TRIVY_SBOM_CONSUMER"

0 comments on commit 60a04a3

Please sign in to comment.