https://github.com/seldonio/seldon-core-aws
Seldon Core AWS Marketplace Helm Charts
https://github.com/seldonio/seldon-core-aws
Last synced: 6 months ago
JSON representation
Seldon Core AWS Marketplace Helm Charts
- Host: GitHub
- URL: https://github.com/seldonio/seldon-core-aws
- Owner: SeldonIO
- License: apache-2.0
- Created: 2018-12-05T10:59:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-03T08:47:29.000Z (over 6 years ago)
- Last Synced: 2025-07-03T19:46:31.504Z (about 1 year ago)
- Language: Smarty
- Size: 12.7 KB
- Stars: 1
- Watchers: 16
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install Seldon Core on EKS via AWS MarketPlace
* Subscribe to Seldon Core on [AWS MarketPlace](https://aws.amazon.com/marketplace/seller-profile?id=cec67450-7a7e-43d5-8e5f-61e94e7c9e03&ref=dtl_B07KCNBCHV)
* [Create your EKS cluster and authenticate kubectl](https://docs.aws.amazon.com/eks/latest/userguide/getting-started.html).
* Install [helm](https://docs.helm.sh/) on your cluster if it is not there already.
```
kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
```
* Install Seldon Custom Resource Definition. Set:
* ```usage_metrics.enabled``` as appropriate.
```
helm install seldon-core-crd --name seldon-core-crd --repo https://storage.googleapis.com/seldon-charts \
--set usage_metrics.enabled=true
```
* Install Seldon Core for the release you subscribed to on Amazon MarketPlace:
For **Seldon 0.2.6**
```
helm install seldon-core-aws --name seldon-core --repo https://storage.googleapis.com/seldon-aws-charts --version 0.2.6
```
For **Seldon 0.2.4**
```
helm install seldon-core-aws --name seldon-core --repo https://storage.googleapis.com/seldon-aws-charts --version 0.2.4
```
For **Seldon 0.2.3**
```
helm install seldon-core-aws --name seldon-core --repo https://storage.googleapis.com/seldon-aws-charts --version 0.2.3
```
# Next Steps
For next steps on using Seldon Core and deploying your first ML models visit the [Seldon Core project page](https://github.com/SeldonIO/seldon-core).
**Note at present you will need to use Ambassador as ingress for the APIs exposed**
# FAQs
## Install a particular version
Use the helm ```--version``` tag to install a particular version, e.g.:
```
helm install seldon-core-aws --name seldon-core --repo https://storage.googleapis.com/seldon-aws-charts \
--version 0.2.3
```
## Install in a particular namespace
Use the helm ```--namespace``` argument to install in a particular namespace
```
helm install seldon-core-aws --name seldon-core --repo https://storage.googleapis.com/seldon-aws-charts \
--namespace my-namespace
```