From 3a816568da7da8582419742efb8d0445b4e4a8ee Mon Sep 17 00:00:00 2001 From: Anton Weiss Date: Sun, 28 Jul 2019 14:21:20 +0300 Subject: [PATCH 1/2] Fix 2 typos in k8s/operators.md and k8s/operators-design.md --- slides/k8s/operators-design.md | 2 +- slides/k8s/operators.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/k8s/operators-design.md b/slides/k8s/operators-design.md index c7b31d18..9af804ce 100644 --- a/slides/k8s/operators-design.md +++ b/slides/k8s/operators-design.md @@ -32,7 +32,7 @@ - must be able to anticipate all the events that might happen - - design will be better only to the extend of what we anticipated + - design will be better only to the extent of what we anticipated - hard to anticipate if we don't have production experience diff --git a/slides/k8s/operators.md b/slides/k8s/operators.md index 46eb526d..0c841865 100644 --- a/slides/k8s/operators.md +++ b/slides/k8s/operators.md @@ -386,4 +386,4 @@ We should see at least one index being created in cerebro. - What if we want different images or parameters for the different nodes? -*Operators can be very powerful, iff we know exactly the scenarios that they can handle.* +*Operators can be very powerful, if we know exactly the scenarios that they can handle.* From 02dcb58f775c36b8490c53be9ece6fc3a2ae758e Mon Sep 17 00:00:00 2001 From: Anton Weiss Date: Sun, 28 Jul 2019 16:05:48 +0300 Subject: [PATCH 2/2] Fix typo in consul startup command --- slides/k8s/statefulsets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/k8s/statefulsets.md b/slides/k8s/statefulsets.md index 9692eef0..6c7c15a9 100644 --- a/slides/k8s/statefulsets.md +++ b/slides/k8s/statefulsets.md @@ -345,7 +345,7 @@ spec: we figure out the minimal command-line to run our Consul cluster.* ``` -consul agent -data=dir=/consul/data -client=0.0.0.0 -server -ui \ +consul agent -data-dir=/consul/data -client=0.0.0.0 -server -ui \ -bootstrap-expect=3 \ -retry-join=`X.X.X.X` \ -retry-join=`Y.Y.Y.Y`