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

README: refactor some kubectl and amend with comments #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 2 additions & 3 deletions K8s/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ $ helm install --name robot-shop --namespace robot-shop .
### Helm v3.x

```bash
$ kubectl create ns robot-shop
$ helm install robot-shop --namespace robot-shop .
$ helm install robot-shop --create-namespace --namespace robot-shop .
```

## Images
Expand All @@ -31,7 +30,7 @@ By default the latest version of the images is pulled. A specific version can be
$ helm install --set image.version=0.1.2 ...
```

It is recommened to always use the latest version.
It is recommended to always use the latest version.

## Pod Security Policy

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ If you are running the store locally via *docker-compose up* then, the store fro
If you are running the store on Kubernetes via minikube then, find the IP address of Minikube and the Node Port of the web service.

```shell
$ minikube ip
$ kubectl get svc web
$ minikube ip # To get the IP address
$ kubectl get svc web # To get the mapped port e.g: 8080:MAPPED_PORT
```

If you are using a cloud Kubernetes / Openshift / Mesosphere then it will be available on the load balancer of that system.
Expand Down