Object Store Secrets#

When you set up cloud-hosted object store such as Amazon S3, you need to create a secret to store the object store credentials. You use this secret while setting up NeMo Data Store with a cloud-hosted object store. For more information, see NeMo Data Store Microservice Deployment and Setup Guide.

The following is a sample secret for Amazon S3 object store credentials:

apiVersion: v1
kind: Secret
metadata:
  name: nds-s3-existing-secret
type: Opaque
stringData:
  objectStoreKey: "access key id for the object store"
  objectStoreSecret: "secret access key for the object store"