-
Notifications
You must be signed in to change notification settings - Fork 191
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
libgit2: enable managed transport by default #718
Conversation
@pjbgf can you confirm this was tested with Azure DevOps and AWS CodeCommit? |
This has been tested against:
@stefanprodan is there any specific thing about AWS CodeCommit we are keen to test it against? Any specific protocol/algo? |
We need to make sure we don’t break the recommendations made in our AWS docs https://fluxcd.io/docs/use-cases/aws-codecommit/ |
Trying to use our documentation did not work for me. By going through the official AWS CodeCommit docs, it seems we are missing Once that was sorted, the reconciliation only worked fine when this changes were applied in addition to the changes on #713.
Will put this on hold until the other PR is merged. |
Re-adding |
Signed-off-by: Paulo Gomes <[email protected]>
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.
LGTM
Thanks @pjbgf 🏅
GitManagedTransport
is a new feature gate that enables the use of Managed Transport.This replaces the previous
EXPERIMENTAL_GIT_TRANSPORT
environment variable that was used for the same result.This is now an
opt-out
feature, which can be disabled by starting the controller with the argument--feature-gates=GitManagedTransport=false
.Fixes #689