Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/raphael-papazikas/bump-k8s-image-tag
- Owner: raphael-papazikas
- License: mit
- Created: 2023-01-12T00:38:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T15:02:26.000Z (7 months ago)
- Last Synced: 2024-04-27T14:56:29.221Z (7 months ago)
- Topics: actions, deployment, k8s, k8s-manifests
- Language: TypeScript
- Homepage:
- Size: 670 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```