Skip to content

Commit

Permalink
Merge pull request #43 from blumamir/ignored-namespaces
Browse files Browse the repository at this point in the history
fix: ignored namespaces option
  • Loading branch information
blumamir authored May 7, 2024
2 parents c590a6a + 71d214a commit 7816fa2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/odigos/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.3.13
version: 0.3.14

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v1.0.53"
appVersion: "v1.0.58"
2 changes: 1 addition & 1 deletion charts/odigos/templates/odigos-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
telemetryEnabled: {{ .Values.telemetry.enabled }}
psp: {{ .Values.psp.enabled }}
ignoredNamespaces:
{{- toYaml .Values.instrumentor.ignoredNamespaces | nindent 8 }}
{{- toYaml .Values.ignoredNamespaces | nindent 8 }}
{{- if .Values.onPremToken }}
defaultSDKs:
dotnet:
Expand Down
17 changes: 10 additions & 7 deletions charts/odigos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ image:
tag: v1.0.58
imagePullSecrets: []

# namespaces not to show in odigos ui
ignoredNamespaces:
- odigos-system
- kube-system
- local-path-storage
- istio-system
- linkerd
- kube-node-lease

collectorGateway:
# the memory request for the cluster gateway collector deployment.
# it will be embedded in the deployment as a resource request
Expand All @@ -20,6 +29,7 @@ collectorGateway:
# this is when go runtime will start garbage collection.
# if not specified, it will be set to 80% of the hard limit of the memory limiter.
goMemLimitMiB: 340

autoscaler:
image:
repository: keyval/odigos-autoscaler
Expand All @@ -38,13 +48,6 @@ scheduler:

instrumentor:
deleteLangDetectionPods: true
# Ignored namespaces won't show up in odigos-ui
ignoredNamespaces:
- odigos-system
- kube-system
- local-path-storage
- istio-system
- linkerd
image:
repository: keyval/odigos-instrumentor
nodeSelector:
Expand Down

0 comments on commit 7816fa2

Please sign in to comment.