Knowledge Graph — Coursera Notes › Organizations › Microsoft › Azure › Azure Kubernetes Service (AKS)
AKS Web Service Testing
feature · part of Azure Kubernetes Service (AKS)
After deployment, test the web service using the run method with sample data, or via raw HTTP request. Example: send a JSON payload with 'data' key containing a list of feature values.
import json
test_sample = json.dumps({'data': [[1,2,3,4,5,6,7,8,9,10]]})
response = service.run(test_sample)
print(response)
After testing, delete the AKS service and model to avoid ongoing costs. The notebook demonstrates cleanup steps.
This is the text view of an interactive 3D knowledge graph — open this page with JavaScript enabled to explore it visually.