Skip to content
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

Adds mTLS support for GitRepositories #1766

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

benke33
Copy link

@benke33 benke33 commented Mar 28, 2025

Hi,

Here's an updated version of PR #1302, without the proxy parts.

This PR adds mTLS support for GitRepositories, which is required if you have your git infrastructure
behind a firewall.
With this feature you don't need any additional setup like nginx reverse proxy or mtls-transmitter,
to access git repos behind a firewall requiring mTLS.

Certificates are added to the same secret used for the credentials in spec.secretRef, CA is optional:

apiversion: v1
kind: Secret
metadata:
  name: my-mtls-secret
stringData:
  certFile: < certificate data >
  keyFile: < private key data > 
  caFile: < CA data >
  username: < git username >
  password: < git token >
  or
  bearerToken: < git token >

Credit to @VasylR for the PR #1302

This PR closes #1761

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

mTLS support for GitRepositories
1 participant