Custom Servers
import os
os.environ["NAMESPACE"] = "seldon-mesh"MESH_IP=!kubectl get svc seldon-mesh -n ${NAMESPACE} -o jsonpath='{.status.loadBalancer.ingress[0].ip}'
MESH_IP=MESH_IP[0]
import os
os.environ['MESH_IP'] = MESH_IP
MESH_IP'172.18.255.2'
Custom Server with Capabilities
The capabilities field replaces the capabilities from the ServerConfig.
cat ./servers/custom-mlserver-capabilities.yamlapiVersion: mlops.seldon.io/v1alpha1
kind: Server
metadata:
name: mlserver-134
spec:
serverConfig: mlserver
capabilities:
- mlserver-1.3.4
podSpec:
containers:
- image: seldonio/mlserver:1.3.4
name: mlserver
Custom Server with Extra Capabilities
The extraCapabilities field extends the existing list from the ServerConfig.
Last updated
Was this helpful?

