Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raphael-papazikas/bump-k8s-image-tag

Updates container image tag in a k8s manifest repository and creates a pull request.
https://github.com/raphael-papazikas/bump-k8s-image-tag

actions deployment k8s k8s-manifests

Last synced: 3 days ago
JSON representation

Updates container image tag in a k8s manifest repository and creates a pull request.

Awesome Lists containing this project

README

        

typescript-action status
# bump-k8s-image-tag
Updates container image tag in a k8s manifest repository and creates a pull request.

## Usage
### Inputs

| Param | Description |
|---------|-------------------------------------------------------------------------------|
| `owner` | The owner of the repository, can be either a username or an organization name |
| `repo` | The repository |
| `PAT` | A personal access token that has read-write access to this repository |
| `image` | Regex that matches the image to update. Example `raphael-papazikas/backend*` |
| `tag` | To which tag should be updated |
| `base` | The base branch, defaults to `main` |

### Example

```yaml
- name: Bump image tag
uses: raphael-papazikas/[email protected]
with:
owner: raphael-papazikas
repo: k8s-deployment
PAT:
image: raphael-papazikas/backend
tag: 0.0.1
```