The git-cli
Task is used to preform various git operations.
A quick usage example is:
---
apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
name: example-taskrun
spec:
taskRef:
name: git-cli
params:
- name: GIT_SCRIPT
value: |
git init
git remote add origin https://github.com/username/public-repo
git pull origin main
workspaces:
- name: source
emptyDir: {}
Please consider the Workspaces, Parameters and Results described below.
A single Workspace is required for this Task, while the optional Workspaces will allow advanced Git configuration and authentication.
The source
is a required Workspace, represents the primary location where the Git repository data will be stored & used for the various steps.
Knowing the Workspace data will be employed on other Tasks, the recommended approach is using a persistent volume, for instance a PersistentVolumeClaim
(PVC).
An optional workspace that contains the files that need to be added to git. You can access the workspace from your script using $(workspaces.input.path)
, for instance:
cp $(workspaces.input.path)/file_that_i_want .
git add file_that_i_want
# etc
The recommended approach to authentication is using the default mechanisms supported by Tekton Pipeline, please consider it as your first option.
More advanced use-cases may require different methods of interacting with private repositories, the following Workspaces are meant to support advanced Git configuration and authentication.
The basic-auth
is a optional Workspace to provide Git credentials and configuration.
The following Workspace files (items) are shared with Git before cloning the repository, the Task copies the files to the Git user home directory, configured by the parameter USER_HOME
.
Workspace File | Required | Description |
---|---|---|
.git-credentials |
true |
Git credentials file |
.gitconfig |
true |
Git configuration file |
Typically, this type of data is stored as a Kubernetes Secret. For example:
kubectl create secret generic basic-auth-ex \
--from-file=".git-credentials=${HOME}/.git-credentials" \
--from-file=".gitconfig=${HOME}/.gitconfig"
Then, you can reference the Secret as the basic-auth
Workspace.
The ssh-directory
is a optional Workspace, meant to store the files commonly found on a ~/.ssh
directory, when informed, the whole directory will be copied into the Git's home (configured by the parameter USER_HOME
).
During the prepare
step you can see the details about what's being copied, please consider the output log snippet below. For more verbose logging set the peramater VERBOSE
to true
.
---> Phase: Copying '.ssh' from ssh-directory workspace ('/workspaces/ssh-directory')...
'/workspaces/ssh-directory' -> '/home/git/.ssh'
'/workspaces/ssh-directory/config' -> '/home/git/.ssh/config'
mode of '/home/git/.ssh' changed from 0755 (rwxr-xr-x) to 0700 (rwx------)
mode of '/home/git/.ssh/config' changed from 0644 (rw-r--r--) to 0400 (r--------)
It's recommended storing this type of data as a Kubernetes Secret, like the following example:
kubectl create secret generic ssh-directory-ex \
--from-file="config=${HOME}/.ssh/config" \
--from-file="authorized_keys=${HOME}/.ssh/authorized_keys"
Then, you can reference the Secret as the ssh-directory
Workspace.
The ssl-ca-directory
is a optional Workspace to store a additional Certificate Authority (CA) bundles, commonly .pem
or .crt
files. The exact bundle file name is defined by the parameter CRT_FILENAME
.
Before running the Git commands, the GIT_SSL_CAINFO
environment variable is exported with the full path to the CRT_FILENAME
in the ssl-ca-directory
Workspace.
You can observe the setting taking place on the beginning of the git-cli
step:
phase 'Exporting custom CA certificate "GIT_SSL_CAINFO=/workspaces/ssl-ca-directory/ca-bundle.crt"'
This is a sensitive information and therefore it's recommended to store as a Kubernetes Secret, please consider the previous examples to create Secrets with the --from-file
option.
Finally, you can reference the Secret as the ssl-ca-directory
Workspace.
The following parameters are supported by this Task.
| Parameter | Type | Default | Description |
| :---------------- | :------: | :-------------- | :------------------------------------------------------------------------------------------------------------------------ | --- |
| GIT_USER_NAME
| string
| "" (empty) | Git user name for performing git operation. |
| GIT_USER_EMAIL
| string
| "" (empty) | Git user email for performing git operation |
| GIT_SCRIPT
| string
| git help
| The git script to run |
| SSL_VERIFY
| string
| true
| Sets the global http.sslVerify
value, false
is not advised unless you trust the remote repository |
| CRT_FILENAME
| string
| ca-bundle.crt
| Certificate Authority (CA) bundle filename on the ssl-ca-directory
Workspace. |
| SUBDIRECTORY
| string
| "" (empty) | Relative path to the source
Workspace where various operations in GIT_SCRIPT
will occur. | |
| DELETE_EXISTING
| string
| true
| Clean out the contents of the source
Workspace before any operations, if data exists. |
| HTTP_PROXY
| string
| "" (empty) | HTTP proxy server (non-TLS requests) |
| HTTPS_PROXY
| string
| "" (empty) | HTTPS proxy server (TLS requests) |
| NO_PROXY
| string
| "" (empty) | Opt out of proxying HTTP/HTTPS requests |
| VERBOSE
| string
| false
| Log the commands executed |
| USER_HOME
| string
| /home/git
| Absolute path to the Git user home directory |
The following results are produced by this Task.
Name | Description |
---|---|
COMMIT |
The precise commit SHA digest |