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

Add note on storageInitializerImage to release-1.7.0 highlights #3086

Merged
merged 1 commit into from
Mar 24, 2021
Merged
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
20 changes: 20 additions & 0 deletions doc/source/reference/release-1.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,26 @@ In this release we have added an extension to the Multi-Armed Bandit Thomson Sam

You can try the distributed Thomson Sampling multiarmed bandit example in the [MAB case study notebook](https://github.com/SeldonIO/seldon-core/blob/master/components/routers/case_study/credit_card_default.ipynb).

## Storage Initializer Customisation on Seldon Deployment

With version 1.7.0 it is now possible to specify image used for the Storage Initializers used with Pre-Packaged Model servers on each Seldon Deployment CR.
```yaml
apiVersion: machinelearning.seldon.io/v1
kind: SeldonDeployment
metadata:
name: custom-sklearn
spec:
predictors:
- name: default
replicas: 1
graph:
name: classifier
implementation: SKLEARN_SERVER
modelUri: mys3:sklearn/iris
storageInitializerImage: gcr.io/kfserving/storage-initializer:v0.4.0 # Specify custom image here
envSecretRefName: seldon-init-container-secret # Specify custom secret here
```

## Security Vulnerability Patches

We have updated our base Python images to address CVEs identified, which aligns to the Seldon Core policy. This further strengthens the security of Seldon Core by ensuring that not only the dependencies are updated to address vulnerabilities, but now the containers have been scanned to identify other vulnerabilities.
Expand Down