Configuring Kloudfuse Profiler Retention in AWS S3

Add the necessary AWS S3 configuration to store profiles to the config section of the custom-values.yaml file.

    config: |
      storage:
        backend: s3 (1)
        s3:
          bucket_name: your-bucket-name (2)
          region: us-west-2 (3)
          endpoint: s3.us-west-2.amazonaws.com (4)
          access_key_id: YOUR_ACCESS_KEY_ID (5)
          secret_access_key: YOUR_SECRET_ACCESS_KEY (6)
          insecure: false (7)
yaml
1 backend: Set to s3.
2 bucket_name: Name of your S3 bucket
3 region: AWS region where your bucket is located
4 endpoint: S3 endpoint for your region
5 access_key_id: Your AWS access key ID
6 secret_access_key: Your AWS secret access key
7 insecure: Set to true if using HTTP instead of HTTPS. We recommend that you use the value of false for production clusters.