Configure S3 Artifact

Spinnaker stages that read data from artifacts can read S3 files directly.

Edit your artifact settings

All that’s required are the following values:

API_ENDPOINT=
API_REGION=
REGION=
ARTIFACT_ACCOUNT_NAME=my-s3-account
  1. Make sure that artifact support is enabled:

    hal config features edit --artifacts true
    hal config artifact s3 enable
    
  2. Add an artifact account:

    hal config artifact s3 account add my-s3-account \
        --api-endpoint $API_ENDPOINT \
        --api-region $API_REGION \
        --region $REGION
    

There are more options described here if you need more control over your configuration.