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 4949 - --lora-info-metric
5050 - " " # Set an empty metric to disable LoRA metric scraping as they are not supported by Triton yet.
5151 {{- end }}
52- {{- if gt .Values.inferenceExtension.replicas 1 }}
52+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
5353 - --ha-enable-leader-election
5454 {{- end }}
5555 # Pass additional flags via the inferenceExtension.flags field in values.yaml.
6868 {{- toYaml .Values.inferenceExtension.extraContainerPorts | nindent 8 }}
6969 {{- end }}
7070 livenessProbe :
71- {{- if gt .Values.inferenceExtension.replicas 1 }}
71+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
7272 grpc :
7373 port : 9003
7474 service : liveness
8080 initialDelaySeconds : 5
8181 periodSeconds : 10
8282 readinessProbe :
83- {{- if gt .Values.inferenceExtension.replicas 1 }}
83+ {{- if gt ( .Values.inferenceExtension.replicas | int) 1 }}
8484 grpc :
8585 port : 9003
8686 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