forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from Jooho/odh_0.11.1_pr3250
[Cherry Pick - 3250] feat: CA bundle mount options for storage initializer
- Loading branch information
Showing
16 changed files
with
1,643 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
kserve-controller=quay.io/opendatahub/kserve-controller:v0.11.1.0 | ||
kserve-agent=quay.io/opendatahub/kserve-agent:v0.11.1.0 | ||
kserve-router=quay.io/opendatahub/kserve-router:v0.11.1.0 | ||
kserve-storage-initializer=quay.io/opendatahub/kserve-storage-initializer:v0.11.1.0 | ||
kserve-controller=quay.io/opendatahub/kserve-controller:v0.11.1-latest | ||
kserve-agent=quay.io/opendatahub/kserve-agent:v0.11.1-latest | ||
kserve-router=quay.io/opendatahub/kserve-router:v0.11.1-latest | ||
kserve-storage-initializer=quay.io/opendatahub/kserve-storage-initializer:v0.11.1-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
# KServe with Self Signed Certificate Model Registry | ||
|
||
If you are using a model registry with a self-signed certificate, you must either skip ssl verify or apply the appropriate CA bundle to the storage-initializer to create a connection with the registry. | ||
This document explains three methods that can be used in KServe, described below: | ||
|
||
- Configure CA bundle for storage-initializer | ||
- Global configuration | ||
- Using `storage-config` Secret | ||
|
||
- Skip SSL Verification | ||
|
||
## Configure CaBundle for storage-initializer | ||
### Global Configuration | ||
|
||
KServe use `inferenceservice-config` ConfigMap for default configuration. If you want to add `cabundle` cert for every inference service, you can set `caBundleConfigMapName` in the ConfigMap. Before updating the ConfigMap, you have to create a ConfigMap for CA bundle certificate in the namespace that KServe controller is running and the data key in the ConfigMap must be `cabundle.crt`. | ||
|
||
- Create a ConfigMap with the CA bundle cert | ||
~~~ | ||
kubectl create configmap cabundle --from-file=/path/to/cabundle.crt | ||
kubectl get configmap cabundle -o yaml | ||
apiVersion: v1 | ||
data: | ||
cabundle.crt: XXXXX | ||
kind: ConfigMap | ||
metadata: | ||
name: cabundle | ||
namespace: kserve | ||
~~~ | ||
- Update `inferenceservice-config` ConfigMap | ||
~~~ | ||
storageInitializer: |- | ||
{ | ||
... | ||
"caBundleConfigMapName": "cabundle", | ||
... | ||
} | ||
~~~ | ||
|
||
If you update this configuration after, please restart KServe controller pod. | ||
|
||
### Using storage-config Secret | ||
|
||
If you want to apply the cabundle only to a specific inferenceservice, you can use a specific annotation or variable(`cabundle_configmap`) on the `storage-config` Secret used by the inferenceservice. | ||
In this case, you have to create the cabundle ConfigMap in the user namespace before you create the inferenceservice. | ||
|
||
|
||
- Create a ConfigMap with the cabundle cert | ||
~~~ | ||
kubectl create configmap local-cabundle --from-file=/path/to/cabundle.crt | ||
kubectl get configmap cabundle -o yaml | ||
apiVersion: v1 | ||
data: | ||
cabundle.crt: XXXXX | ||
kind: ConfigMap | ||
metadata: | ||
name: local-cabundle | ||
namespace: kserve-demo | ||
~~~ | ||
|
||
- Add an annotation `serving.kserve.io/s3-cabundle-configmap` to `storage-config` Secret | ||
~~~ | ||
apiVersion: v1 | ||
data: | ||
AWS_ACCESS_KEY_ID: VEhFQUNDRVNTS0VZ | ||
AWS_SECRET_ACCESS_KEY: VEhFUEFTU1dPUkQ= | ||
kind: Secret | ||
metadata: | ||
annotations: | ||
serving.kserve.io/s3-cabundle-configmap: local-cabundle | ||
... | ||
name: storage-config | ||
namespace: kserve-demo | ||
type: Opaque | ||
~~~ | ||
|
||
- Or, set a variable `cabundle_configmap` to `storage-config` Secret | ||
~~~ | ||
apiVersion: v1 | ||
stringData: | ||
localMinIO: | | ||
{ | ||
"type": "s3", | ||
"access_key_id": "THEACCESSKEY", | ||
"secret_access_key": "THEPASSWORD", | ||
"endpoint_url": "https://minio.minio.svc:9000", | ||
"bucket": "modelmesh-example-models", | ||
"region": "us-south" | ||
"cabundle_configmap": "local-cabundle" | ||
} | ||
kind: Secret | ||
metadata: | ||
name: storage-config | ||
namespace: kserve-demo | ||
type: Opaque | ||
~~~ | ||
|
||
## Skip SSL Verification | ||
|
||
For testing purposes or when there is no cabundle, you can easily create an SSL connection by disabling SSL verification. | ||
This can also be used by adding an annotation or setting a variable in `secret-config` Secret. | ||
|
||
- Add an annotation(`serving.kserve.io/s3-verifyssl`) to `storage-config` Secret | ||
~~~ | ||
apiVersion: v1 | ||
data: | ||
AWS_ACCESS_KEY_ID: VEhFQUNDRVNTS0VZ | ||
AWS_SECRET_ACCESS_KEY: VEhFUEFTU1dPUkQ= | ||
kind: Secret | ||
metadata: | ||
annotations: | ||
serving.kserve.io/s3-verifyssl: "0" # 1 is true, 0 is false | ||
... | ||
name: storage-config | ||
namespace: kserve-demo | ||
type: Opaque | ||
~~~ | ||
|
||
- Or, set a variable (`verify_ssl`) to `storage-config` Secret | ||
~~~ | ||
apiVersion: v1 | ||
stringData: | ||
localMinIO: | | ||
{ | ||
"type": "s3", | ||
"access_key_id": "THEACCESSKEY", | ||
"secret_access_key": "THEPASSWORD", | ||
"endpoint_url": "https://minio.minio.svc:9000", | ||
"bucket": "modelmesh-example-models", | ||
"region": "us-south", | ||
"verify_ssl": "0" # 1 is true, 0 is false (You can set True/true/False/false too) | ||
} | ||
kind: Secret | ||
metadata: | ||
name: storage-config | ||
namespace: kserve-demo | ||
type: Opaque | ||
~~~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.