Skip to content

Commit

Permalink
Merge pull request #22 from Netcracker/bugfix/affinity
Browse files Browse the repository at this point in the history
bugfix/affinity
  • Loading branch information
asatt authored Feb 13, 2025
2 parents 2c5c0f1 + 34d3fc9 commit a59e448
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/qubership-jaeger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.
version: 0.20.2
version: 0.20.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
6 changes: 5 additions & 1 deletion charts/qubership-jaeger/templates/agent/daemon-set.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.agent.install }}
---
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
Expand Down Expand Up @@ -138,4 +138,8 @@ spec:
tolerations:
{{- toYaml .Values.agent.tolerations | nindent 8 }}
{{- end }}
{{- if .Values.agent.affinity }}
affinity:
{{- toYaml .Values.agent.affinity | nindent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@ spec:
- name: robot-storage
emptyDir: {}
nodeSelector: {}
affinity: {}
{{- if .Values.statusProvisioner.affinity }}
affinity:
{{- toYaml .Values.statusProvisioner.affinity | nindent 8 }}
{{- end }}
{{- end }}
Loading

0 comments on commit a59e448

Please sign in to comment.