From 68201b5b83cdca857c6218ae58084353d0dca44c Mon Sep 17 00:00:00 2001 From: Craig Boman Date: Fri, 28 Feb 2025 16:10:46 -0500 Subject: [PATCH] removing example dir --- guestbook-go/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/guestbook-go/README.md b/guestbook-go/README.md index f136d479..fc0c366b 100644 --- a/guestbook-go/README.md +++ b/guestbook-go/README.md @@ -29,7 +29,7 @@ Use the `examples/guestbook-go/redis-master-controller.yaml` file to create a [r 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: ```console - $ kubectl create -f examples/guestbook-go/redis-master-controller.yaml + $ kubectl create -f guestbook-go/redis-master-controller.yaml ``` @@ -76,7 +76,7 @@ Services find the pods to load balance based on pod labels. The pod that you cre 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: ```console - $ kubectl create -f examples/guestbook-go/redis-master-service.yaml + $ kubectl create -f guestbook-go/redis-master-service.yaml ``` @@ -99,7 +99,7 @@ The Redis master we created earlier is a single pod (REPLICAS = 1), while the Re 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: ```console - $ kubectl create -f examples/guestbook-go/redis-replica-controller.yaml + $ kubectl create -f guestbook-go/redis-replica-controller.yaml ``` @@ -142,7 +142,7 @@ Just like the master, we want to have a service to proxy connections to the read 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: ```console - $ kubectl create -f examples/guestbook-go/redis-replica-service.yaml + $ kubectl create -f guestbook-go/redis-replica-service.yaml ``` @@ -167,7 +167,7 @@ This is a simple Go `net/http` ([negroni](https://github.com/codegangsta/negroni 1. Use the [guestbook-controller.yaml](guestbook-controller.yaml) file to create the guestbook replication controller by running the `kubectl create -f` *`filename`* command: ```console - $ kubectl create -f examples/guestbook-go/guestbook-controller.yaml + $ kubectl create -f guestbook-go/guestbook-controller.yaml ``` @@ -207,7 +207,7 @@ Just like the others, we create a service to group the guestbook pods but this t 1. Use the [guestbook-service.yaml](guestbook-service.yaml) file to create the guestbook service by running the `kubectl create -f` *`filename`* command: ```console - $ kubectl create -f examples/guestbook-go/guestbook-service.yaml + $ kubectl create -f guestbook-go/guestbook-service.yaml ``` @@ -253,7 +253,7 @@ After you're done playing with the guestbook, you can cleanup by deleting the gu Delete all the resources by running the following `kubectl delete -f` *`filename`* command: ```console -$ kubectl delete -f examples/guestbook-go +$ kubectl delete -f guestbook-go guestbook-controller guestbook redid-master-controller