From 0558fc3723ef7d3ed4df4dc18fc178d4367e368d Mon Sep 17 00:00:00 2001 From: Ziming Miao Date: Wed, 30 Jan 2019 13:38:23 +0800 Subject: [PATCH] fix typo (#47) --- README.md | 6 +++--- docs/How-it-works.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2337ded..02599d7 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ ## Problem -We would like to watch if some change happens in `ConfigMap` and/or `Secret`; then perform a rolling upgrade on relevant `Deployment`, `Deamonset` and `Statefulset` +We would like to watch if some change happens in `ConfigMap` and/or `Secret`; then perform a rolling upgrade on relevant `Deployment`, `Daemonset` and `Statefulset` ## Solution -Reloader can watch changes in `ConfigMap` and `Secret` and do rolling upgrades on Pods with their associated `Deployments`, `Deamonsets` and `Statefulsets`. +Reloader can watch changes in `ConfigMap` and `Secret` and do rolling upgrades on Pods with their associated `Deployments`, `Daemonsets` and `Statefulsets`. ## How to use Reloader @@ -123,7 +123,7 @@ helm repo update helm install stakater/reloader ``` -**Note:** By default reloader watches in all namespaces. To watch in single namespace, please run following command. It will install reloader in `test` namespace which will only watch `Deployments`, `Deamonsets` and `Statefulsets` in `test` namespace. +**Note:** By default reloader watches in all namespaces. To watch in single namespace, please run following command. It will install reloader in `test` namespace which will only watch `Deployments`, `Daemonsets` and `Statefulsets` in `test` namespace. ```bash helm install stakater/reloader --set reloader.watchGlobally=false --namespace test diff --git a/docs/How-it-works.md b/docs/How-it-works.md index b35482c..e33240f 100644 --- a/docs/How-it-works.md +++ b/docs/How-it-works.md @@ -1,6 +1,6 @@ # How it works? -Reloader watches for `ConfigMap` and `Secret` and detects if there are changes in data of these objects. After change detection reloader performs rolling upgrade on relevant Pods via associated `Deployment`, `Deamonset` and `Statefulset`. +Reloader watches for `ConfigMap` and `Secret` and detects if there are changes in data of these objects. After change detection reloader performs rolling upgrade on relevant Pods via associated `Deployment`, `Daemonset` and `Statefulset`. ## How change detection works