Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add local build and test publish mechanism as programming guide. #35

Merged
merged 2 commits into from
Mar 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,21 @@ Alternatively, AKS Periscope can be deployed directly with `kubectl`. See instru


# Programming Guide
To Be Updated.

To locally build from this project from the root of this repository:
Tatsinnit marked this conversation as resolved.
Show resolved Hide resolved

```
CGO_ENABLED=0 GOOS=linux go build -mod=vendor github.com/Azure/aks-periscope/cmd/aks-periscope
```

**Tip**: In order to test local changes, user can build the local image via `Dockerfile` and then then push it to your local hub. That way user sould be able to reference this test image in the `deployment\aks-periscope.yaml` `containers` property `image` attribute reference to your published test published docker image.
Tatsinnit marked this conversation as resolved.
Show resolved Hide resolved

For example:

```
docker build -f ./builder/Dockerfile -t <some_docker_repo_name>/<aks-periscope-user-selected-test-name> .
docker push <some_docker_repo_name>/<aks-periscope-user-selected-test-name>
```

# Feedback
Feel free to contact aksperiscope@microsoft.com or open an issue with any feedback or questions about AKS Periscope. This is currently a work in progress, but look out for more capabilities to come!
Expand Down