Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.
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
4 changes: 4 additions & 0 deletions istio-telemetry/kiali/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,7 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.kiali.tolerations }}
tolerations:
{{ toYaml .Values.kiali.tolerations | indent 6 }}
{{- end }}
1 change: 1 addition & 0 deletions istio-telemetry/kiali/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ kiali:
contextPath: /kiali # The root context path to access the Kiali UI.
nodeSelector: {}
podAnnotations: {}
tolerations: []

# Specify the pod anti-affinity that allows you to constrain which nodes
# your pod is eligible to be scheduled based on labels on pods that are
Expand Down
4 changes: 4 additions & 0 deletions istio-telemetry/tracing/templates/deployment-jaeger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.tracing.jaeger.tolerations }}
tolerations:
{{ toYaml .Values.tracing.jaeger.tolerations | indent 6 }}
{{- end }}
{{- if eq .Values.tracing.jaeger.spanStorageType "badger" }}
volumes:
- name: data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,8 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.tracing.opencensus.tolerations }}
tolerations:
{{ toYaml .Values.tracing.opencensus.tolerations | indent 6 }}
{{- end }}
{{ end }}
6 changes: 5 additions & 1 deletion istio-telemetry/tracing/templates/deployment-zipkin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,8 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{ end }}
{{- if .Values.tracing.zipkin.tolerations }}
tolerations:
{{ toYaml .Values.tracing.zipkin.tolerations | indent 6 }}
{{- end }}
{{ end }}
3 changes: 3 additions & 0 deletions istio-telemetry/tracing/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ tracing:
storageClassName: ""
accessMode: ReadWriteMany
podAnnotations: {}
tolerations: []

zipkin:
hub: docker.io/openzipkin
Expand All @@ -67,6 +68,7 @@ tracing:
node:
cpus: 2
podAnnotations: {}
tolerations: []

opencensus:
hub: docker.io/omnition
Expand All @@ -82,6 +84,7 @@ tracing:
stackdriver:
enable_tracing: true
podAnnotations: {}
tolerations: []

service:
annotations: {}
Expand Down