File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
config/charts/inferencepool/templates Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5151 - --lora-info-metric
5252 - " " # Set an empty metric to disable LoRA metric scraping as they are not supported by Triton yet.
5353 {{- end }}
54- {{- if gt .Values.inferenceExtension.replicas 1 }}
54+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
5555 - --ha-enable-leader-election
5656 {{- end }}
5757 # Pass additional flags via the inferenceExtension.flags field in values.yaml.
7070 {{- toYaml . | nindent 8 }}
7171 {{- end }}
7272 livenessProbe :
73- {{- if gt .Values.inferenceExtension.replicas 1 }}
73+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
7474 grpc :
7575 port : 9003
7676 service : liveness
8282 initialDelaySeconds : 5
8383 periodSeconds : 10
8484 readinessProbe :
85- {{- if gt .Values.inferenceExtension.replicas 1 }}
85+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
8686 grpc :
8787 port : 9003
8888 service : readiness
Original file line number Diff line number Diff line change 1- {{- if gt .Values.inferenceExtension.replicas 1 }}
1+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
22---
33kind : Role
44apiVersion : rbac.authorization.k8s.io/v1
You can’t perform that action at this time.
0 commit comments