summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXingcai Zhang <zhangxingcai@ghostcloud.cn>2017-11-10 22:06:44 +0800
committerXingcai Zhang <zhangxingcai@ghostcloud.cn>2017-11-10 22:06:44 +0800
commit58bd5ba03e5d98042793e4bf8069541058d8480f (patch)
treebff674897dfbdfe6c8d9ee260fc45bf815ccd1ea
parent20d2f6f5498a5668bae2aea9dcaf4875b9c06ccb (diff)
update configuration and instantiate
-rw-r--r--contributors/design-proposals/instrumentation/events-redesign.md2
-rw-r--r--contributors/design-proposals/node/dynamic-kubelet-configuration.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/contributors/design-proposals/instrumentation/events-redesign.md b/contributors/design-proposals/instrumentation/events-redesign.md
index cf9fbdd6..4355e1ad 100644
--- a/contributors/design-proposals/instrumentation/events-redesign.md
+++ b/contributors/design-proposals/instrumentation/events-redesign.md
@@ -161,7 +161,7 @@ EventSeriesStateOngoing = "Ongoing"
| ----------| -------| -------| --------------------|---------|
| Node X | BecameUnreachable | HeartbeatTooOld | kubernetes.io/node-ctrl | <nil> |
| Node Y | FailedToAttachVolume | Unknown | kubernetes.io/pv-attach-ctrl | PVC X |
-| ReplicaSet X | FailedToInstantiantePod | QuotaExceeded | kubernetes.io/replica-set-ctrl | <nil> |
+| ReplicaSet X | FailedToInstantiatePod | QuotaExceeded | kubernetes.io/replica-set-ctrl | <nil> |
| ReplicaSet X | InstantiatedPod | | kubernetes.io/replica-set-ctrl | Pod Y |
| Ingress X | CreatedLoadBalancer | | kubernetes.io/ingress-ctrl | <nil> |
| Pod X | ScheduledOn | | kubernetes.io/scheduler | Node Y |
diff --git a/contributors/design-proposals/node/dynamic-kubelet-configuration.md b/contributors/design-proposals/node/dynamic-kubelet-configuration.md
index 188fb84f..3dc8870f 100644
--- a/contributors/design-proposals/node/dynamic-kubelet-configuration.md
+++ b/contributors/design-proposals/node/dynamic-kubelet-configuration.md
@@ -75,7 +75,7 @@ There are two types of configuration that are stored on disk:
- cached configurations from a remote source, e.g. `ConfigMaps` from etcd.
- the local "init" configuration, e.g. the set of config files the node is provisioned with.
-The Kubelet should accept a `--dynamic-config-dir` flag, which specifies a directory for storing all of the information necessary for dynamic configuraiton from remote sources; e.g. the cached configurations, which configuration is currently in use, which configurations are known to be bad, etc.
+The Kubelet should accept a `--dynamic-config-dir` flag, which specifies a directory for storing all of the information necessary for dynamic configuration from remote sources; e.g. the cached configurations, which configuration is currently in use, which configurations are known to be bad, etc.
- When the Kubelet downloads a `ConfigMap`, it will checkpoint a serialization of the `ConfigMap` object to a file at `{dynamic-config-dir}/checkpoints/{UID}`.
- We checkpoint the entire object, rather than unpacking the contents to disk, because the former is less complex and reduces chance for errors during the checkpoint process.