-
Notifications
You must be signed in to change notification settings - Fork 64
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
feat: support azure blob sync #1428
feat: support azure blob sync #1428
Conversation
✅ Deploy Preview for polite-licorice-3db33c ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
ced1139
to
b4dc1f2
Compare
Signed-off-by: Matthew Wilson <54033231+wilson-matthew@users.noreply.github.com>
b4dc1f2
to
9e98688
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I'd like to test it out manually before giving a final approval, but it looks good so far. Also, nice job catching all those doc inconsistencies.
Hey @wilson-matthew, I'm new to Azure, so please bear with me. I tried to test using a SAS token but ran into a 403. The environment variable I set was |
Hey @beeme1mr, I just tested using a SAS token with the AZURE_STORAGE_SAS_TOKEN environment variable and it worked okay for me. What settings did you use when generating the SAS token - I wonder if it didn’t have the correct permissions? You could try the AZURE_STORAGE_KEY auth mechanism as that is unlikely to have a permissions issue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got it working, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Thanks a lot!
- adds support for Azure Blob Storage sync Signed-off-by: Matthew Wilson <54033231+wilson-matthew@users.noreply.github.com>
- adds support for Azure Blob Storage sync Signed-off-by: Matthew Wilson <54033231+wilson-matthew@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- <details><summary>flagd: 0.11.4</summary> ## [0.11.4](flagd/v0.11.3...flagd/v0.11.4) (2024-10-28) ### 🐛 Bug Fixes * **deps:** update module buf.build/gen/go/open-feature/flagd/connectrpc/go to v1.17.0-20240906125204-0a6a901b42e8.1 ([#1409](#1409)) ([f07d348](f07d348)) * **deps:** update module buf.build/gen/go/open-feature/flagd/protocolbuffers/go to v1.35.1-20240906125204-0a6a901b42e8.1 ([#1420](#1420)) ([1f06d5a](1f06d5a)) * **deps:** update module github.com/open-feature/flagd/core to v0.10.3 ([#1411](#1411)) ([a312196](a312196)) * **deps:** update module github.com/prometheus/client_golang to v1.20.5 ([#1425](#1425)) ([583ba89](583ba89)) * **deps:** update module go.uber.org/mock to v0.5.0 ([#1427](#1427)) ([0c6fd7f](0c6fd7f)) * **deps:** update module golang.org/x/net to v0.30.0 ([#1417](#1417)) ([4d5b75e](4d5b75e)) * **deps:** update module google.golang.org/grpc to v1.67.1 ([#1415](#1415)) ([85a3a6b](85a3a6b)) ### ✨ New Features * added custom grpc resolver ([#1424](#1424)) ([e5007e2](e5007e2)) * support azure blob sync ([#1428](#1428)) ([5c39cfe](5c39cfe)) </details> <details><summary>flagd-proxy: 0.6.7</summary> ## [0.6.7](flagd-proxy/v0.6.6...flagd-proxy/v0.6.7) (2024-10-28) ### 🐛 Bug Fixes * **deps:** update module buf.build/gen/go/open-feature/flagd/protocolbuffers/go to v1.35.1-20240906125204-0a6a901b42e8.1 ([#1420](#1420)) ([1f06d5a](1f06d5a)) * **deps:** update module github.com/open-feature/flagd/core to v0.10.3 ([#1411](#1411)) ([a312196](a312196)) * **deps:** update module github.com/prometheus/client_golang to v1.20.5 ([#1425](#1425)) ([583ba89](583ba89)) * **deps:** update module golang.org/x/net to v0.30.0 ([#1417](#1417)) ([4d5b75e](4d5b75e)) * **deps:** update module google.golang.org/grpc to v1.67.1 ([#1415](#1415)) ([85a3a6b](85a3a6b)) </details> <details><summary>core: 0.10.4</summary> ## [0.10.4](core/v0.10.3...core/v0.10.4) (2024-10-28) ### 🐛 Bug Fixes * **deps:** update module buf.build/gen/go/open-feature/flagd/protocolbuffers/go to v1.35.1-20240906125204-0a6a901b42e8.1 ([#1420](#1420)) ([1f06d5a](1f06d5a)) * **deps:** update module github.com/prometheus/client_golang to v1.20.5 ([#1425](#1425)) ([583ba89](583ba89)) * **deps:** update module go.uber.org/mock to v0.5.0 ([#1427](#1427)) ([0c6fd7f](0c6fd7f)) * **deps:** update module gocloud.dev to v0.40.0 ([#1422](#1422)) ([e0e4709](e0e4709)) * **deps:** update module golang.org/x/crypto to v0.28.0 ([#1416](#1416)) ([fb272da](fb272da)) * **deps:** update module google.golang.org/grpc to v1.67.1 ([#1415](#1415)) ([85a3a6b](85a3a6b)) ### ✨ New Features * added custom grpc resolver ([#1424](#1424)) ([e5007e2](e5007e2)) * support azure blob sync ([#1428](#1428)) ([5c39cfe](5c39cfe)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This PR
How to test