Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 759 Bytes

s3.md

File metadata and controls

32 lines (23 loc) · 759 Bytes

S3

InfraBox requires some object store to persist data. You may use any S3 compatible storage. If you already have a S3 compatible object store you can use it. If not see use Minio how you can setup one.

When installing with helm later on set these options:

storage:
    s3:
        # Enabled S3
        enabled: true

        # Region
        region: # <REQUIRED>

        # Regeion endpoint
        endpoint: # <REQUIRED>

        # Region endpoint port
        port: 443

        # If https should be used or not
        secure: true

        # Bucket name
        bucket: # <REQUIRED>

        # AWS Access Key ID
        access_key_id: # <REQUIRED>

        # AWS Secret Access Key
        secret_access_key: # <REQUIRED>