Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dgageot/skaffold-deploy-mix


https://github.com/dgageot/skaffold-deploy-mix

Last synced: 15 days ago
JSON representation

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!
```