Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaapio/keelsh-deploy
Deploy on k8 via keel.sh webhook
https://github.com/jaapio/keelsh-deploy
github-action keel-sh kubernetes-deployment
Last synced: about 1 month ago
JSON representation
Deploy on k8 via keel.sh webhook
- Host: GitHub
- URL: https://github.com/jaapio/keelsh-deploy
- Owner: jaapio
- License: mit
- Created: 2020-01-31T10:29:52.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T11:15:59.000Z (almost 5 years ago)
- Last Synced: 2024-05-02T01:19:26.509Z (7 months ago)
- Topics: github-action, keel-sh, kubernetes-deployment
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# keelsh-deploy
Deploy on kubernetes via [keel.sh] webhook
This action provides an easy interface to interact from github actions to keel.sh native webhook. The action requires a working keel setup in your cluster. Consult the docs of keel how to setup keel properly.
The example below shows how to use this action
```yml
on: [release]
name: Deploy
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: deploy
uses: jaapio/keelsh-deploy@master
with:
keelBaseUrl: https://keel.yourcluster.dev:9300
image: 'myproject/image'
tag: ${{ github.event.tag_name }}
```[keel.sh]: https://keel.sh