Skip to content

Commit 428a55f

Browse files
committed
update echo-server image and add ingress step
1 parent 15ca1fc commit 428a55f

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

site/content/en/docs/handbook/accessing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Services of type `NodePort` can be exposed via the `minikube service <service-na
4141
1. Create a Kubernetes deployment
4242

4343
```shell
44-
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
44+
kubectl create deployment hello-minikube1 --image=kicbase/echo-server:1.0
4545
```
4646

4747
2. Create a Kubernetes service type NodePort
@@ -159,7 +159,7 @@ Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command
159159
2. Create a Kubernetes deployment
160160
161161
```shell
162-
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
162+
kubectl create deployment hello-minikube1 --image=kicbase/echo-server:1.0
163163
```
164164
165165
3. Create a Kubernetes service with type LoadBalancer

site/content/en/docs/handbook/deploying.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ aliases:
1111
## kubectl
1212

1313
```shell
14-
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
14+
kubectl create deployment hello-minikube1 --image=kicbase/echo-server:1.0
1515
kubectl expose deployment hello-minikube1 --type=LoadBalancer --port=8080
1616
```
1717

site/content/en/docs/handbook/kubectl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ minikube kubectl -- get pods
7777
Creating a deployment inside kubernetes cluster
7878
7979
```shell
80-
minikube kubectl -- create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.4
80+
minikube kubectl -- create deployment hello-minikube --image=kicbase/echo-server:1.0
8181
```
8282
8383
Exposing the deployment with a NodePort service

site/content/en/docs/start/_index.md

+4
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,10 @@ NAME CLASS HOSTS ADDRESS PORTS AGE
676676
example-ingress nginx * <your_ip_here> 80 5m45s
677677
```
678678

679+
**Note for Docker Desktop Users:**
680+
<br>
681+
To get ingress to work you'll need to open a new terminal window and run `minikube tunnel` and in the following step use `0.0.0.0` in place of `<ip_from_above>`.
682+
679683
Now verify that the ingress works
680684
```shell
681685
$ curl <ip_from_above>/foo

site/content/en/docs/tutorials/ambassador_ingress_controller.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ this [post](https://blog.getambassador.io/new-kubernetes-1-18-extends-ingress-c3
5656
First, let's create a Kubernetes deployment and service which we will talk to via Ambassador.
5757

5858
```shell script
59-
kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.4
59+
kubectl create deployment hello-minikube --image=kicbase/echo-server:1.0
6060
kubectl expose deployment hello-minikube --port=8080
6161
```
6262

@@ -105,7 +105,7 @@ that maps a target backend service to a given host or prefix.
105105

106106
Let's create another Kubernetes deployment and service that we will expose via Ambassador -
107107
```shell script
108-
kubectl create deployment mapping-minikube --image=k8s.gcr.io/echoserver:1.4
108+
kubectl create deployment mapping-minikube --image=kicbase/echo-server:1.0
109109
kubectl expose deployment mapping-minikube --port=8080
110110
```
111111

0 commit comments

Comments
 (0)