Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add helm v3 commands #3045

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/source/workflow/usage-reporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ We provide an option to use an anonymous metrics collection tool provided by the
To help support the development of seldon-core, the voluntary reporting of usage data can be enabled whenever the "seldon-core-operator" helm chart is used by setting the "--set usageMetrics.enabled=true" option.

```bash
helm install seldon-core-operator --name seldon-core \
helm install seldon-core seldon-core-operator \
--repo https://storage.googleapis.com/seldon-charts --set usageMetrics.enabled=true
```

Expand Down Expand Up @@ -62,7 +62,7 @@ An example of what's reported:
Reporting of usage data is disabled by default, just use "seldon-core-operator" as normal.

```bash
helm install seldon-core-operator --name seldon-core \
helm install seldon-core seldon-core-operator \
--repo https://storage.googleapis.com/seldon-charts
```

2 changes: 1 addition & 1 deletion examples/cicd/sig-mlops-jenkins-classic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ In particular, you will need to run the following:
```bash
%%bash
helm install \
--name "jenkins" stable/jenkins \
jenkins stable/jenkins \
--namespace "jenkins" \
--set "rbac.create=true" \
--set "master.adminUser=admin" \
Expand Down
4 changes: 2 additions & 2 deletions examples/models/aws_eks_deep_mnist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ We first start with the custom resource definitions (CRDs)


```python
!helm install seldon-core-operator --name seldon-core-operator --repo https://storage.googleapis.com/seldon-charts --set usageMetrics.enabled=true --namespace seldon-system
!helm install seldon-core-operator seldon-core-operator --repo https://storage.googleapis.com/seldon-charts --set usageMetrics.enabled=true --namespace seldon-system
```

NAME: seldon-core-operator
Expand Down Expand Up @@ -467,7 +467,7 @@ In EKS it automatically creates an Elastic Load Balancer, which you can configur


```python
!helm install stable/ambassador --name ambassador --set crds.keep=false
!helm install ambassador stable/ambassador --set crds.keep=false
```

NAME: ambassador
Expand Down
4 changes: 2 additions & 2 deletions examples/models/azure_aks_deep_mnist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ We first start with the custom resource definitions (CRDs)


```python
!helm install seldon-core-operator --name seldon-core-operator --repo https://storage.googleapis.com/seldon-charts
!helm install seldon-core-operator seldon-core-operator --repo https://storage.googleapis.com/seldon-charts
```

NAME: seldon-core-operator
Expand Down Expand Up @@ -415,7 +415,7 @@ In EKS it automatically creates an Elastic Load Balancer, which you can configur


```python
!helm install stable/ambassador --name ambassador --set crds.keep=false
!helm install ambassador stable/ambassador --set crds.keep=false
```

Error: release ambassador failed: serviceaccounts "ambassador" already exists
Expand Down
2 changes: 1 addition & 1 deletion examples/models/gpu_tensorflow_deep_mnist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ We first start with the custom resource definitions (CRDs)


```python
!helm install seldon-core-operator --name seldon-core-operator --repo https://storage.googleapis.com/seldon-charts
!helm install seldon-core-operator seldon-core-operator --repo https://storage.googleapis.com/seldon-charts
```

NAME: seldon-core-operator
Expand Down
2 changes: 1 addition & 1 deletion testing/profiling/engine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
1. Create debug image using Makefile. Ensure you use current version of engine.
1. Launch Seldon Core with this image as the engine image using, e.g.
```
!helm install ../helm-charts/seldon-core --name seldon-core --namespace seldon --set ambassador.enabled=true --set engine.image.name=seldonio/engine-debug:0.2.6-SNAPSHOT
!helm install seldon-core ../helm-charts/seldon-core --namespace seldon --set ambassador.enabled=true --set engine.image.name=seldonio/engine-debug:0.2.6-SNAPSHOT
```
1. Check logs of instance to get port and port forward to it, e.g.
```
Expand Down