added apple/m1 binary, updated readme (#77)

Co-authored-by: Alex Haiut <alex@up9.com>
This commit is contained in:
Alex Haiut 2021-06-21 13:06:08 +03:00 committed by GitHub
parent 756f5f5720
commit 5d205b5082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 3 deletions

View File

@ -4,7 +4,6 @@ on:
branches: branches:
- develop - develop
- main - main
- my-temp-release-check
jobs: jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -32,16 +32,35 @@ Pick one from the [Releases](https://github.com/up9inc/mizu/releases) page.
## Examples ## Examples
Run `mizu help` for usage options
To tap specific pod - To tap specific pod -
``` ```
$ kubectl get pods | grep front-end $ kubectl get pods
NAME READY STATUS RESTARTS AGE NAME READY STATUS RESTARTS AGE
front-end-649fc5fd6-kqbtn 2/2 Running 0 7m front-end-649fc5fd6-kqbtn 2/2 Running 0 7m
..
$ mizu tap front-end-649fc5fd6-kqbtn $ mizu tap front-end-649fc5fd6-kqbtn
+front-end-649fc5fd6-kqbtn +front-end-649fc5fd6-kqbtn
Web interface is now available at http://localhost:8899 Web interface is now available at http://localhost:8899
^C ^C
``` ```
To tap multiple pods using regex -
```
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
carts-66c77f5fbb-fq65r 2/2 Running 0 20m
catalogue-5f4cb7cf5-7zrmn 2/2 Running 0 20m
front-end-649fc5fd6-kqbtn 2/2 Running 0 20m
..
$ mizu tap "^ca.*"
+carts-66c77f5fbb-fq65r
+catalogue-5f4cb7cf5-7zrmn
Web interface is now available at http://localhost:8899
^C
```

View File

@ -29,7 +29,7 @@ build-all: ## build for all supported platforms
@# $(MAKE) GOOS=windows GOARCH=amd64 @# $(MAKE) GOOS=windows GOARCH=amd64
@# $(MAKE) GOOS=linux GOARCH=386 @# $(MAKE) GOOS=linux GOARCH=386
@# $(MAKE) GOOS=windows GOARCH=386 @# $(MAKE) GOOS=windows GOARCH=386
@# $(MAKE) GOOS=darwin GOARCH=arm64 @$(MAKE) GOOS=darwin GOARCH=arm64
@# $(MAKE) GOOS=linux GOARCH=arm64 @# $(MAKE) GOOS=linux GOARCH=arm64
@# $(MAKE) GOOS=windows GOARCH=arm64 @# $(MAKE) GOOS=windows GOARCH=arm64
@echo "---------" @echo "---------"