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

Clarify how to push docker image to minikube #1269

Merged
merged 1 commit into from
Jun 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions sample-operators/webpage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ If you want the Operator to be running as a deployment in your cluster, follow t

### Build

In order to point your docker build to minikube docker registry run:

```
eval $(minikube docker-env)
```

You can build the sample using `mvn jib:dockerBuild` this will produce a Docker image you can push to the registry
of your choice. The JAR file is built using your local Maven and JDK and then copied into the Docker image.

Expand Down