From c77a9bdfc9709ba87843de79e836865146c5a905 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 1 Aug 2023 11:34:57 -0400 Subject: [PATCH] replace wording (#1682) #### What type of PR is this? replaces wording to replica #### What this PR does / why we need it: #### Which issue(s) this PR fixes: Fixes # #### Special notes for your reviewer: Signed-off-by: Charlie Drage --- docs/getting-started.md | 16 ++++++++-------- docs/index.md | 2 +- docs/user-guide.md | 8 ++++---- index.md | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 0d692bed..058e0008 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -58,10 +58,10 @@ Run `kompose convert` in the same directory as your `docker-compose.yaml` file. $ kompose convert INFO Kubernetes file "frontend-service.yaml" created INFO Kubernetes file "redis-master-service.yaml" created -INFO Kubernetes file "redis-slave-service.yaml" created +INFO Kubernetes file "redis-replica-service.yaml" created INFO Kubernetes file "frontend-deployment.yaml" created INFO Kubernetes file "redis-master-deployment.yaml" created -INFO Kubernetes file "redis-slave-deployment.yaml" created +INFO Kubernetes file "redis-replica-deployment.yaml" created ``` Then you can use `kubectl apply` to create these resources in Kubernetes. @@ -148,13 +148,13 @@ Run `kompose convert --provider=openshift` in the same directory as your `docker $ kompose convert --provider=openshift INFO OpenShift file "frontend-service.yaml" created INFO OpenShift file "redis-master-service.yaml" created -INFO OpenShift file "redis-slave-service.yaml" created +INFO OpenShift file "redis-replica-service.yaml" created INFO OpenShift file "frontend-deploymentconfig.yaml" created INFO OpenShift file "frontend-imagestream.yaml" created INFO OpenShift file "redis-master-deploymentconfig.yaml" created INFO OpenShift file "redis-master-imagestream.yaml" created -INFO OpenShift file "redis-slave-deploymentconfig.yaml" created -INFO OpenShift file "redis-slave-imagestream.yaml" created +INFO OpenShift file "redis-replica-deploymentconfig.yaml" created +INFO OpenShift file "redis-replica-imagestream.yaml" created ``` Then you can use `kubectl apply` to create these resources in OpenShift cluster. @@ -268,13 +268,13 @@ Run `kompose convert --provider=openshift` in the same directory as your `docker $ kompose convert --provider=openshift INFO OpenShift file "frontend-service.yaml" created INFO OpenShift file "redis-master-service.yaml" created -INFO OpenShift file "redis-slave-service.yaml" created +INFO OpenShift file "redis-replica-service.yaml" created INFO OpenShift file "frontend-deploymentconfig.yaml" created INFO OpenShift file "frontend-imagestream.yaml" created INFO OpenShift file "redis-master-deploymentconfig.yaml" created INFO OpenShift file "redis-master-imagestream.yaml" created -INFO OpenShift file "redis-slave-deploymentconfig.yaml" created -INFO OpenShift file "redis-slave-imagestream.yaml" created +INFO OpenShift file "redis-replica-deploymentconfig.yaml" created +INFO OpenShift file "redis-replica-imagestream.yaml" created ``` Then you can use `kubectl apply` to create these resources in OpenShift. diff --git a/docs/index.md b/docs/index.md index fb3d2673..b4a41f2d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -14,5 +14,5 @@ $ kubectl get po NAME READY STATUS RESTARTS AGE frontend-591253677-5t038 1/1 Running 0 10s redis-master-2410703502-9hshf 1/1 Running 0 10s -redis-slave-4049176185-hr1lr 1/1 Running 0 10s +redis-replica-4049176185-hr1lr 1/1 Running 0 10s ``` diff --git a/docs/user-guide.md b/docs/user-guide.md index 62022000..a842062c 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -49,18 +49,18 @@ INFO Kubernetes file "frontend-service.yaml" created INFO Kubernetes file "mlbparks-service.yaml" created INFO Kubernetes file "mongodb-service.yaml" created INFO Kubernetes file "redis-master-service.yaml" created -INFO Kubernetes file "redis-slave-service.yaml" created +INFO Kubernetes file "redis-replica-service.yaml" created INFO Kubernetes file "frontend-deployment.yaml" created INFO Kubernetes file "mlbparks-deployment.yaml" created INFO Kubernetes file "mongodb-deployment.yaml" created INFO Kubernetes file "mongodb-claim0-persistentvolumeclaim.yaml" created INFO Kubernetes file "redis-master-deployment.yaml" created -INFO Kubernetes file "redis-slave-deployment.yaml" created +INFO Kubernetes file "redis-replica-deployment.yaml" created $ ls -mlbparks-deployment.yaml mongodb-service.yaml redis-slave-service.jsonmlbparks-service.yaml +mlbparks-deployment.yaml mongodb-service.yaml redis-replica-service.jsonmlbparks-service.yaml frontend-deployment.yaml mongodb-claim0-persistentvolumeclaim.yaml redis-master-service.yaml -frontend-service.yaml mongodb-deployment.yaml redis-slave-deployment.yaml +frontend-service.yaml mongodb-deployment.yaml redis-replica-deployment.yaml redis-master-deployment.yaml ``` diff --git a/index.md b/index.md index 6c645dc3..aa5ea9a9 100644 --- a/index.md +++ b/index.md @@ -32,7 +32,7 @@ $ kubectl get po NAME READY STATUS RESTARTS AGE frontend-591253677-5t038 1/1 Running 0 10s redis-master-2410703502-9hshf 1/1 Running 0 10s -redis-slave-4049176185-hr1lr 1/1 Running 0 10s +redis-replica-4049176185-hr1lr 1/1 Running 0 10s ``` A more detailed guide is available in our [getting started guide](/docs/getting-started.md).