Skip to content

Commit

Permalink
Improve git resolver docs
Browse files Browse the repository at this point in the history
This is follow up of #8263 to fix and improve docs
of git resolver

/kind documentation
  • Loading branch information
piyush-garg committed Oct 1, 2024
1 parent c07e353 commit e1fd1ef
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/git-resolver.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,17 @@ spec:
### Specifying Configuration for Multiple Git Providers

It is possible to specify configurations for multiple providers and even multiple configurations for same provider to use in
different tekton resources. You need to first add details in configmap with your unique identifier key prefix.
different tekton resources. Firstly, details need to be added in configmap with the unique identifier key prefix.
To use them in tekton resources, pass the unique key mentioned in configmap as an extra param to resolver with key
`configKey` and value your unique key. If no `configKey` param is passed, `default` will be used. You can specify
default configuration in configmap either by mentioning no unique identifier or by using default identifier `default`
`configKey` and value will be the unique key. If no `configKey` param is passed, `default` will be used. Default
configuration to be used for git resolver can be specified in configmap by either mentioning no unique identifier or
using identifier `default`

**Note**: `configKey` should not contain `.` while specifying configurations in configmap

### Example Configmap

You can add multiple configuration to `git-resolver-configmap` like this. All keys mentioned above are supported.
Multiple configurations can be specified in `git-resolver-config` configmap like this. All keys mentioned above are supported.

```yaml
apiVersion: v1
Expand Down Expand Up @@ -253,7 +254,7 @@ data:
#### Task Resolution

A specific configurations from the configMap can be selected by passing the parameter `configKey` with the value
matching one of the configuration keys used in the configMaps.
matching one of the configuration keys used in the configMap.

```yaml
apiVersion: tekton.dev/v1beta1
Expand Down

0 comments on commit e1fd1ef

Please sign in to comment.