Skip to content

Commit

Permalink
Use kserve.io annotations instead of kubeflow.org in doc samples (kub…
Browse files Browse the repository at this point in the history
…eflow#2528)

Update annotations for S3 secretes to use `kserve.io` instead of `kubeflow.org`

Signed-off-by: dilverse <[email protected]>
Signed-off-by: dilverse <[email protected]>

Signed-off-by: dilverse <[email protected]>
Signed-off-by: dilverse <[email protected]>
  • Loading branch information
dilverse authored Nov 16, 2022
1 parent 77f04a7 commit 376d008
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/samples/multimodelserving/triton/s3_secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ kind: Secret
metadata:
name: mysecret
annotations:
serving.kubeflow.org/s3-region: us-west-2
serving.kubeflow.org/s3-usevirtualbucket: "false"
serving.kubeflow.org/s3-endpoint: minio-service:9000 # replace with your s3 endpoint
serving.kubeflow.org/s3-usehttps: "0" # by default 1, for testing with minio you need to set to 0
serving.kserve.io/s3-region: us-west-2
serving.kserve.io/s3-usevirtualbucket: "false"
serving.kserve.io/s3-endpoint: minio-service:9000 # replace with your s3 endpoint
serving.kserve.io/s3-usehttps: "0" # by default 1, for testing with minio you need to set to 0
type: Opaque
data:
AWS_ACCESS_KEY_ID: bWluaW8=
Expand Down
8 changes: 4 additions & 4 deletions docs/samples/storage/s3/s3_secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ kind: Secret
metadata:
name: mysecret
annotations:
serving.kubeflow.org/s3-endpoint: s3.amazonaws.com # replace with your s3 endpoint
serving.kubeflow.org/s3-usehttps: "1" # by default 1, for testing with minio you need to set to 0
serving.kubeflow.org/s3-region: "us-east-2" # replace with the region the bucket is created in
serving.kubeflow.org/s3-useanoncredential: "false" # omitting this is the same as false, if true will ignore credential provided and use anonymous credentials
serving.kserve.io/s3-endpoint: s3.amazonaws.com # replace with your s3 endpoint
serving.kserve.io/s3-usehttps: "1" # by default 1, for testing with minio you need to set to 0
serving.kserve.io/s3-region: "us-east-2" # replace with the region the bucket is created in
serving.kserve.io/s3-useanoncredential: "false" # omitting this is the same as false, if true will ignore credential provided and use anonymous credentials
type: Opaque
data:
AWS_ACCESS_KEY_ID: bWluaW8= # replace with your base64 encoded s3 credential
Expand Down

0 comments on commit 376d008

Please sign in to comment.