Merge pull request #6064 from mooncak/fix_issues

Fix some typos in files
This commit is contained in:
k8s-ci-robot 2018-11-10 15:27:42 -08:00 committed by GitHub
commit 98b019358d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -292,7 +292,7 @@ and not during a future upgrade or, worse, during a master failure.
In case you failed to upgrade to multi-master you will need to restore from the backup you have taken previously.
Take extra care becase kops will not start etcd and etcd-events with the same ID on <master-b> an/or <master-c> for example but will mix them (ex: etcd-b and etcd-events-c on <master-b> & etcd-c and etcd-events-b on <master-c> ); this can be double checked in Route53 where kops will create DNS records for your services.
Take extra care because kops will not start etcd and etcd-events with the same ID on <master-b> an/or <master-c> for example but will mix them (ex: etcd-b and etcd-events-c on <master-b> & etcd-c and etcd-events-b on <master-c> ); this can be double checked in Route53 where kops will create DNS records for your services.
If your 2nd spinned master failed and cluster becomes inconsistent edit the corresponding kops master instancegroup and switch ``MinSize`` and ``MaxSize`` to "0" and run an update on your cluster.

View File

@ -102,7 +102,7 @@ func (b *KubeProxyBuilder) Build(c *fi.ModelBuilderContext) error {
return nil
}
// buildPod is responsble constructing the pod spec
// buildPod is responsible constructing the pod spec
func (b *KubeProxyBuilder) buildPod() (*v1.Pod, error) {
c := b.Cluster.Spec.KubeProxy
if c == nil {

View File

@ -57,7 +57,7 @@ func (e *MirrorSecrets) Find(c *fi.Context) (*MirrorSecrets, error) {
return nil, nil
}
// Run implemements fi.Task::Run
// Run implements fi.Task::Run
func (e *MirrorSecrets) Run(c *fi.Context) error {
return fi.DefaultDeltaRunMethod(e, c)
}