Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lwnmengjing/cd-template
- Owner: lwnmengjing
- Created: 2021-10-29T13:51:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-13T02:23:42.000Z (over 2 years ago)
- Last Synced: 2024-11-12T10:42:08.846Z (3 months ago)
- Language: Go
- Size: 394 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```