Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lwnmengjing/cd-template

cd template deploy to istio
https://github.com/lwnmengjing/cd-template

Last synced: about 1 month ago
JSON representation

cd template deploy to istio

Awesome Lists containing this project

README

        

## CD Template
if you use github actions, use example:
```yaml
- uses: actions/setup-node@v2
- name: Get CD Tools
run: |
curl -O https://lwnmengjing.github.io/cd-template/latest/linux_amd64.tar.gz
tar -zxvf linux_amd64.tar.gz
./cd-template --config=[you config path]
```
OR
```yaml
- uses: actions/setup-node@v2
- name: Get CD Tools
run: |
curl -O https://lwnmengjing.github.io/cd-template/latest/linux_amd64.tar.gz
tar -zxvf linux_amd64.tar.gz
./cd-template --namespace=prod --app=cd --service=temp --image=werrerw:v1 --configDataFiles=./cfg.local.yaml --importEnvNames=STAGE
```