GitHub user mvngne added a comment to the discussion: Save logs to S3 (ceph)

Okay. Finaly found a solution. For anyone with the same issues

```
extraSecrets:
    ceph-s3-creds:
      stringData: |-
        AWS_ACCESS_KEY_ID: "{{ s3_access_key }}"
        AWS_SECRET_ACCESS_KEY: "{{ s3_access_secret }}"
        AWS_ENDPOINT_URL: "{{ s3_endpoint_url }}"

  extraEnv: |-
    - name: AWS_ACCESS_KEY_ID
      valueFrom:
        secretKeyRef:
          name: ceph-s3-creds
          key: AWS_ACCESS_KEY_ID
    - name: AWS_SECRET_ACCESS_KEY
      valueFrom:
        secretKeyRef:
          name: ceph-s3-creds
          key: AWS_SECRET_ACCESS_KEY
    - name: AWS_ENDPOINT_URL
      valueFrom:
        secretKeyRef:
          name: ceph-s3-creds
          key: AWS_ENDPOINT_URL
```

GitHub link: 
https://github.com/apache/airflow/discussions/58889#discussioncomment-15124165

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to