Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(): add support for HTTP probe tolerations #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions templates/http-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ spec:
operator: In
values:
- {{ .Values.popArch }}
{{- if .Values.http.tolerations.enabled }}
tolerations:
- effect: {{ Values.http.tolerations.effect }}
key: {{ Values.http.tolerations.key }}
operator: {{ Values.http.tolerations.operator }}
value: {{ Values.http.tolerations.value }}
{{- end }}
imagePullSecrets:
{{- if .Values.downloadKey }}
- name: "instana-io"
Expand Down
7 changes: 7 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ http:
cpu: 300m
memory: 500Mi

## Custom node tolerations assist HTTP probes to run on dedicated edge nodes in certain clusters
tolerations:
enabled: false
effect: NoExecute
key: dedicated
operator: Equal
value: edge

# synthetic-pop-javascript playback engine
javascript:
Expand Down