This message was deleted.
# ask-for-help
s
This message was deleted.
c
Hi @Michael Aydinbas , to clarify, are you using yatai for deploying BentoML on k8s?
m
nope our own company on-prem kubernetes cluster
for a service to be reachable from outside I have to create an ingress and all our rest services start with
/rest/<service>/
so
/metrics
would actually become
/rest/<service>/metrics
and this is what I have to configure
my assumption might be wrong here and it actually can keep /metrics because it is scraped internally and not from outside
👍 1
c
Got it, if you use the cluster internal url for accessing the service, it should be ok
Also if you are running multiple replicas
This could become more tricky
Btw Yatai is an open source cloud native tool that you can install on any k8s cluster with helm install
In many AI use cases, it helps scaling BentoML workloads better than plain container deployments
m
thanks for the help!