This topic describes how you can use Git authentication with Supply Chain Choreographer.
You can either fetch or push source code from or to a repository that requires credentials. You must provide credentials through a Kubernetes secret object referenced by the intended Kubernetes object created for performing the action.
The following sections provide details about how to appropriately set up Kubernetes secrets for carrying those credentials forward to the proper resources.
ImportantFor HTTP, HTTPS, and SSH, do not use the same server for multiple secrets to avoid a Tekton error.
For any action upon an HTTP or HTTPS based repository, create a Kubernetes secret object of type kubernetes.io/basic-auth
as follows:
apiVersion: v1
kind: Secret
metadata:
name: SECRET-NAME
annotations:
tekton.dev/git-0: GIT-SERVER # ! required
type: kubernetes.io/basic-auth # ! required
stringData:
username: GIT-USERNAME
password: GIT-PASSWORD
For example, assuming you have a repository called kontinue/hello-world
on GitHub that requires authentication, and you have an access token with the privileges of reading the contents of the repository, you can create the secret as follows:
apiVersion: v1
kind: Secret
metadata:
name: git-secret
annotations:
tekton.dev/git-0: https://github.com
type: kubernetes.io/basic-auth
stringData:
username: GITHUB-USERNAME
password: GITHUB-ACCESS-TOKEN
NoteIn this example, you use an access token because GitHub deprecates basic authentication with plain user name and password. For more information, see Creating a personal access token on GitHub.
After you create the secret, attach it to the ServiceAccount
configured for the workload by including it in its set of secrets. For example:
```yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: default
secrets:
- name: registry-credentials
- name: tap-registry
- name: GIT-SECRET-NAME
imagePullSecrets:
- name: registry-credentials
- name: tap-registry
```
In addition to the shared.ca_cert_data field, you must add the certificate to the secret used to access the Git repository. The only platform tested with custom CA certificates is GitLab.
You set up the secret similarly to the section above, but the caFile
field specifies a certificate authority.
apiVersion: v1
kind: Secret
metadata:
name: SECRET-NAME
annotations:
tekton.dev/git-0: GIT-SERVER # ! required
type: kubernetes.io/basic-auth # ! required
stringData:
username: GIT-USERNAME
password: GIT-PASSWORD
caFile: |
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
The secret is associated with the ServiceAccount
.
```yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: default
secrets:
- name: registry-credentials
- name: tap-registry
- name: GIT-SECRET-NAME
imagePullSecrets:
- name: registry-credentials
- name: tap-registry
```
Aside from using HTTP or HTTPS as a transport, the supply chains also allow you to use SSH.
ImportantTo use the pull request feature, you must use HTTP or HTTPS authentication with an access token.
To provide the credentials for any Git operations with SSH, create the Kubernetes secret as follows:
apiVersion: v1
kind: Secret
metadata:
name: GIT-SECRET-NAME
annotations:
tekton.dev/git-0: GIT-SERVER
type: kubernetes.io/ssh-auth
stringData:
ssh-privatekey: SSH-PRIVATE-KEY # private key with push-permissions
identity: SSH-PRIVATE-KEY # private key with pull permissions
identity.pub: SSH-PUBLIC-KEY # public of the `identity` private key
known_hosts: GIT-SERVER-PUBLIC-KEYS # Git server public keys
Generate a new SSH keypair: identity
and identity.pub
.
ssh-keygen -t ecdsa -b 521 -C "" -f "identity" -N ""
Go to your Git provider and add the identity.pub
as a deployment key for the repository of interest or add to an account that has access to it. For example, for GitHub, visit https://github.com/<repository>/settings/keys/new
.
NoteKeys of type SHA-1/RSA are recently deprecated by GitHub.
Gather public keys from the provider, for example, GitHub:
ssh-keyscan github.com > ./known_hosts
Create the Kubernetes secret by using the contents of the files in the first step:
apiVersion: v1
kind: Secret
metadata:
name: GIT-SECRET-NAME
annotations: {tekton.dev/git-0: GIT-SERVER}
type: kubernetes.io/ssh-auth
stringData:
ssh-privatekey: SSH-PRIVATE-KEY
identity: SSH-PRIVATE-KEY
identity.pub: SSH-PUBLIC-KEY
known_hosts: GIT-SERVER-PUBLIC-KEYS
For example, edit the credentials:
apiVersion: v1
kind: Secret
metadata:
name: git-ssh
annotations: {tekton.dev/git-0: github.com}
type: kubernetes.io/ssh-auth
stringData:
ssh-privatekey: |
-----BEGIN OPENSSH PRIVATE KEY-----
AAAA
....
....
-----END OPENSSH PRIVATE KEY-----
known_hosts: |
<known hosts entrys for git provider>
identity: |
-----BEGIN OPENSSH PRIVATE KEY-----
AAAA
....
....
-----END OPENSSH PRIVATE KEY-----
identity.pub: ssh-ed25519 AAAABBBCCCCDDDDeeeeFFFF [email protected]
After you create the secret, attach it to the ServiceAccount configured for the workload by including it in its set of secrets. For example:
apiVersion: v1
kind: ServiceAccount
metadata:
name: default
secrets:
- name: registry-credentials
- name: tap-registry
- name: GIT-SECRET-NAME
imagePullSecrets:
- name: registry-credentials
- name: tap-registry
NoteIf you’ve used Namespace Provisioner to set up your Developer Namespace where you workload is created, use the
namespace_provisioner.default_parameters.supply_chain_service_account.secrets
property in yourtap-values.yaml
. For example:
```yaml
namespace_provisioner:
default_parameters:
supply_chain_service_account:
secrets:
- GIT-SECRET-NAME
```
Namespace Provisioner manages the service account and manual edits to it do not persist.
For information about Git, see Git Reference.