You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is always recommended to first upgrade Seldon Core to the latest supported version on your Kubernetes cluster and then upgrade the Kubernetes cluster.
32
27
33
28
### Running older versions of Seldon Core?
34
29
35
-
Make sure you read the [Upgrading Seldon Core Guide](../reference/upgrading.md)
30
+
Make sure you read the [Upgrading Seldon Core Guide](../upgrading.md) to understand breaking changes and best practices for upgrading.
36
31
37
32
-**Seldon Core will stop supporting versions prior to 1.0 so make sure you upgrade.**
38
-
- If you are running an older version of Seldon Core, and will be upgrading it please make sure you read the [Upgrading Seldon Core docs](../reference/upgrading.md) to understand breaking changes and best practices for upgrading.
39
-
- Please see [Migrating from Helm v2 to Helm v3](https://helm.sh/docs/topics/v2_v3_migration/) if you are already running Seldon Core using Helm v2 and wish to upgrade.
40
33
41
34
# Install Seldon Core with Helm
42
35
43
-
First [install Helm 3.x](https://docs.helm.sh/docs/intro/install/). When helm is installed you can deploy the seldon controller to manage your Seldon Deployment graphs.
36
+
You will first need to add the seldonio Helm repo:
If you want to provide advanced parameters with your installation you can check the full [Seldon Core Helm Chart Reference](./advanced-helm-chart-configuration.md).
83
+
For example, if you want to install the operator with Istio or Ambassador enabled, and usage metrics enabled you can
For full instructions on installation with Istio and Ambassador read the following pages:
110
+
You can check that the operator is running:
111
+
```bash
112
+
kubectl get pods -n seldon-system
113
+
```
84
114
85
-
-[Ingress with Istio](../ingress/istio.md)
86
-
-[Ingress with Ambassador](../ingress/ambassador.md)
115
+
You should see a `seldon-controller-manager` pod with `STATUS=Running`.
87
116
88
-
### Install a specific version
89
117
90
-
In order to install a specific version you can do so by running the same command above with the `--version` flag, followed by the version you want to run.
118
+
For full instructions on installation with Istio and Ambassador read the following pages:
119
+
120
+
-[Ingress with Istio](../routing/istio.md)
121
+
-[Ingress with Ambassador](../routing/ambassador.md)
91
122
92
123
### Install a SNAPSHOT version
93
124
@@ -97,13 +128,7 @@ This means that you can try out a dev version of master if you want to try a spe
97
128
98
129
For this you would be able to clone the repository, and then checkout the relevant SNAPSHOT branch.
99
130
100
-
Once you have done that you can install seldon-core using the following command:
0 commit comments