Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgageot/skaffold-deploy-mix
https://github.com/dgageot/skaffold-deploy-mix
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dgageot/skaffold-deploy-mix
- Owner: dgageot
- Created: 2020-05-04T16:22:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-04T16:23:51.000Z (over 4 years ago)
- Last Synced: 2024-10-18T07:35:38.050Z (27 days ago)
- Language: Makefile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Goal
Reproduce https://github.com/GoogleContainerTools/skaffold/issues/1753
```
unset SKAFFOLD_LABEL # Make sure runId is not overriden
skaffold build -q > build_result.json
skaffold deploy --build-artifacts=build_result.json -p david
skaffold deploy --tail --build-artifacts=build_result.json -p world
```or
```
unset SKAFFOLD_LABEL # Make sure runId is not overriden
make test
```The logs should show:
```
[getting-started-world getting-started] Hello World!
[getting-started-world getting-started] Hello World!
[getting-started-world getting-started] Hello World!
```not
```
[getting-started-david getting-started] Hello David!
[getting-started-world getting-started] Hello World!
[getting-started-david getting-started] Hello David!
[getting-started-world getting-started] Hello World!
[getting-started-world getting-started] Hello World!
```