Is it also possible to store the all logs for airb...
# replication-ask-ai
r
Is it also possible to store the all logs for airbyte in external storage like S3 bucket for k8s airbyte deployment with Helm? What values I need to add to values.yaml ? Thx And where I need to put my IAM user key and secret key ?
k
A message from kapa.ai
Yes, it is possible to store Airbyte logs in an external S3 bucket for a Kubernetes deployment using Helm. You need to update the
values.yaml
file with the appropriate configuration for S3 logging. Here's an example of the configuration you need to add:
Copy code
yaml logs:   accessKey:     password: "your_aws_access_key_id"     existingSecret: ""     existingSecretKey: ""   secretKey:     password: "your_aws_secret_access_key"     existingSecret: ""     existingSecretKey: ""   storage:     type: "S3"   s3:     enabled: true     bucket: "your_s3_bucket_name"     bucketRegion: "your_s3_bucket_region"
Replace
your_aws_access_key_id
,
your_aws_secret_access_key
,
your_s3_bucket_name
, and
your_s3_bucket_region
with your actual AWS credentials and S3 bucket information. For more information on configuring Kubernetes logging, you can refer to the [Airbyte documentation](https://docs.airbyte.com/operator-guides/configuring-airbyte#kubernetes-only).