Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/daisaru11/setup-cd-tools

A Github Action to set up a variety of tools for Continuous Delivery.
https://github.com/daisaru11/setup-cd-tools

continuous-delivery github-actions

Last synced: 2 months ago
JSON representation

A Github Action to set up a variety of tools for Continuous Delivery.

Awesome Lists containing this project

README

        

A Github Action to set up a variety of tools for Continuous Delivery.

## Supported Tools

- [jq](https://stedolan.github.io/jq/)
- [yq](https://github.com/mikefarah/yq)
- kubectl
- [kustomize](https://github.com/kubernetes-sigs/kustomize)
- [skaffold](https://github.com/GoogleContainerTools/skaffold)
- [helm](https://github.com/helm/helm)
- [hub](https://github.com/github/hub)

## Usage

```
name: Deployment
on: [push]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
...
- name: Set up tools
uses: daisaru11/setup-cd-tools@v1
with:
kubectl: '1.6.0'
kustomize: '3.5.4'
...
```