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 1 commit
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
3 changes: 3 additions & 0 deletions istio-telemetry/kiali/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,6 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.kiali.tolerations }}
tolerations:
{{ toYaml .Values.kiali.tolerations | indent 6 }}
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
3 changes: 3 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,9 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.tracing.jaeger.tolerations }}
tolerations:
{{ toYaml .Values.tracing.jaeger.tolerations | indent 6 }}
{{- if eq .Values.tracing.jaeger.spanStorageType "badger" }}
volumes:
- name: data
Expand Down
3 changes: 3 additions & 0 deletions istio-telemetry/tracing/templates/deployment-opencensus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,7 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.tracing.opencensus.tolerations }}
tolerations:
{{ toYaml .Values.tracing.opencensus.tolerations | indent 6 }}
{{ end }}
3 changes: 3 additions & 0 deletions istio-telemetry/tracing/templates/deployment-zipkin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,7 @@ spec:
affinity:
{{- include "nodeaffinity" . | indent 6 }}
{{- include "podAntiAffinity" . | indent 6 }}
{{- if .Values.tracing.zipkin.tolerations }}
tolerations:
{{ toYaml .Values.tracing.zipkin.tolerations | indent 6 }}
{{ 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