-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] WALG_DISABLE_S3_SSE and S3 compliant endpoint #697
Comments
Originally the It shouldn't be hard to fix it and set it to true only if no other value is set: if not wale.get('WALG_DISABLE_S3_SSE'):
wale['WALG_DISABLE_S3_SSE'] = 'true' and the same for |
- allow read/execute by everyone for runit run files - change owner to root for etcd and etcdctl In addition to that bump Timescaledb to 2.6.0 and allow custom settings of `WALE_DISABLE_S3_SSE` and `WALG_DISABLE_S3_SSE` Close zalando#697 Close zalando#701 Close zalando#704
Hello,
Some context for our installation in case this helps:
Regarding our issue/question: I am a bit confused regarding the WALG_DISABLE_S3_SSE variable.
It is said in the documentation the following:
However we noticed that the files were pushed without any request of encryption. I checked inside the pod in the wal-e envdir, and noticed that the variable WALG_DISABLE_S3_SSE was set to True, while the doc, and our definition said "false".
Looking at the code here https://github.com/zalando/spilo/blob/master/postgres-appliance/scripts/configure_spilo.py#L787 , I see that we are in that case, as we aren't using S3 in AWS (as we have a endpoint defined)
Then a few line below: https://github.com/zalando/spilo/blob/master/postgres-appliance/scripts/configure_spilo.py#L801-802. I see that SSE is disabled without any comment on the reason:
Reading the function seems to not show any other way to enable it.
Could you confirm that my understanding is correct, and that if we use a S3 compliant installation, there is, currently no way, to force WAL-G to request encryption? We did workaround for now using the auto encrypt at our minio gateway to force everything to be encrypted even if not requested, but this sounds like a ugly hack more than anything for us...
Maybe this should be clarified in the documentation as well if it's expected. As the documentation mention that it is supposed to be enabled.
Kr,
The text was updated successfully, but these errors were encountered: