docs/code-samples/community/serving/machinelearning-python-bentoml/service.yaml

25 lines
614 B
YAML

apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: iris-classifier
namespace: default
spec:
template:
spec:
containers:
- image: docker.io/{username}/iris-classifier
ports:
- containerPort: 5000 # Port to route to
livenessProbe:
httpGet:
path: /healthz
initialDelaySeconds: 3
periodSeconds: 5
readinessProbe:
httpGet:
path: /healthz
initialDelaySeconds: 3
periodSeconds: 5
failureThreshold: 3
timeoutSeconds: 60