Skip to content

Commit 4741d4f

Browse files
authored
Merge pull request #553 from craigboman/examples-docs
removing example dir
2 parents 9262c3a + 68201b5 commit 4741d4f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guestbook-go/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Use the `examples/guestbook-go/redis-master-controller.yaml` file to create a [r
2929
1. Use the [redis-master-controller.yaml](redis-master-controller.yaml) file to create the Redis master replication controller in your Kubernetes cluster by running the `kubectl create -f` *`filename`* command:
3030

3131
```console
32-
$ kubectl create -f examples/guestbook-go/redis-master-controller.yaml
32+
$ kubectl create -f guestbook-go/redis-master-controller.yaml
3333
3434
```
3535

@@ -76,7 +76,7 @@ Services find the pods to load balance based on pod labels. The pod that you cre
7676
1. Use the [redis-master-service.yaml](redis-master-service.yaml) file to create the service in your Kubernetes cluster by running the `kubectl create -f` *`filename`* command:
7777

7878
```console
79-
$ kubectl create -f examples/guestbook-go/redis-master-service.yaml
79+
$ kubectl create -f guestbook-go/redis-master-service.yaml
8080
8181
```
8282

@@ -99,7 +99,7 @@ The Redis master we created earlier is a single pod (REPLICAS = 1), while the Re
9999
1. Use the file [redis-replica-controller.yaml](redis-replica-controller.yaml) to create the replication controller by running the `kubectl create -f` *`filename`* command:
100100

101101
```console
102-
$ kubectl create -f examples/guestbook-go/redis-replica-controller.yaml
102+
$ kubectl create -f guestbook-go/redis-replica-controller.yaml
103103
104104
```
105105

@@ -142,7 +142,7 @@ Just like the master, we want to have a service to proxy connections to the read
142142
1. Use the [redis-replica-service.yaml](redis-replica-service.yaml) file to create the Redis replica service by running the `kubectl create -f` *`filename`* command:
143143

144144
```console
145-
$ kubectl create -f examples/guestbook-go/redis-replica-service.yaml
145+
$ kubectl create -f guestbook-go/redis-replica-service.yaml
146146
147147
```
148148

@@ -167,7 +167,7 @@ This is a simple Go `net/http` ([negroni](https://github.com/codegangsta/negroni
167167
1. Use the [guestbook-controller.yaml](guestbook-controller.yaml) file to create the guestbook replication controller by running the `kubectl create -f` *`filename`* command:
168168

169169
```console
170-
$ kubectl create -f examples/guestbook-go/guestbook-controller.yaml
170+
$ kubectl create -f guestbook-go/guestbook-controller.yaml
171171
172172
```
173173

@@ -207,7 +207,7 @@ Just like the others, we create a service to group the guestbook pods but this t
207207
1. Use the [guestbook-service.yaml](guestbook-service.yaml) file to create the guestbook service by running the `kubectl create -f` *`filename`* command:
208208

209209
```console
210-
$ kubectl create -f examples/guestbook-go/guestbook-service.yaml
210+
$ kubectl create -f guestbook-go/guestbook-service.yaml
211211
```
212212

213213

@@ -253,7 +253,7 @@ After you're done playing with the guestbook, you can cleanup by deleting the gu
253253
Delete all the resources by running the following `kubectl delete -f` *`filename`* command:
254254

255255
```console
256-
$ kubectl delete -f examples/guestbook-go
256+
$ kubectl delete -f guestbook-go
257257
guestbook-controller
258258
guestbook
259259
redid-master-controller

0 commit comments

Comments
 (0)