Skip to content

Commit 318cad3

Browse files
committed
Update docs
1 parent cc47878 commit 318cad3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/operator/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Cortex runs on Kubernetes. If you don't already have a Kubernetes cluster, [eksc
3838
# Install kubectl, eksctl, and aws-iam-authenticator
3939
./cortex.sh install kubernetes-tools
4040

41-
# Spin up an EKS cluster (this takes ~20 minutes; see eksctl.io for more configuration options)
41+
# Spin up an EKS cluster (this takes ~20 minutes; see eksctl.io for more options)
4242
eksctl create cluster --name=cortex --nodes=2 --node-type=t3.medium
4343
```
4444

docs/quick-start.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -585,10 +585,10 @@ Configuration
585585
Use cURL to test the API:
586586

587587
```
588-
$ curl --insecure \
589-
--request POST \
590-
--header "Content-Type: application/json" \
591-
--data '{ "samples": [ { "sepal_length": 5.2, "sepal_width": 3.6, "petal_length": 1.4, "petal_width": 0.3 } ] }' \
588+
$ curl -k \
589+
-X POST \
590+
-H "Content-Type: application/json" \
591+
-d '{ "samples": [ { "sepal_length": 5.2, "sepal_width": 3.6, "petal_length": 1.4, "petal_width": 0.3 } ] }' \
592592
<API endpoint>
593593
594594
{"classification_predictions":[{"class_ids":["0"],"classes":["MA=="],"logits":[1.501487135887146,-0.6141998171806335,-1.4335800409317017],"predicted_class":0,"predicted_class_reversed":"Iris-setosa","probabilities":[0.8520227670669556,0.10271172970533371,0.04526554048061371]}],"resource_id":"18ef9f6fb4a1a8b2a3d3e8068f179f89f65d1ae3d8ac9d96b782b1cec3b39d2"}

0 commit comments

Comments
 (0)