update spelling mistakes

This commit is contained in:
yuxiaobo 2019-09-05 17:59:36 +08:00
parent 84fe3db5cf
commit f6ce8f5789
3 changed files with 3 additions and 3 deletions

View File

@ -738,7 +738,7 @@ binary | sha256 hash
- **Simplified User Experience** - **Simplified User Experience**
- Easier to get a cluster up and running (eg: `kubeadm`, intra-cluster bootstrapping) - Easier to get a cluster up and running (eg: `kubeadm`, intra-cluster bootstrapping)
- Easier to understand a cluster (eg: API audit logs, server-based API defaults) - Easier to understand a cluster (eg: API audit logs, server-based API defaults)
- **Stateful Appplication Support** - **Stateful Application Support**
- Enhanced persistence capabilities (eg: `StorageClasses`, new volume plugins) - Enhanced persistence capabilities (eg: `StorageClasses`, new volume plugins)
- New resources and scheduler features (eg: `ScheduledJob` resource, pod/node affinity/anti-affinity) - New resources and scheduler features (eg: `ScheduledJob` resource, pod/node affinity/anti-affinity)
- **Cluster Federation** - **Cluster Federation**

View File

@ -330,7 +330,7 @@ func TestDontSyncDeploymentsWithEmptyPodSelector(t *testing.T) {
f.objects = append(f.objects, d) f.objects = append(f.objects, d)
// Normally there should be a status update to sync observedGeneration but the fake // Normally there should be a status update to sync observedGeneration but the fake
// deployment has no generation set so there is no action happpening here. // deployment has no generation set so there is no action happening here.
f.run(testutil.GetKey(d, t)) f.run(testutil.GetKey(d, t))
} }

View File

@ -130,7 +130,7 @@ func (m *sioMgr) AttachVolume(volName string, multipleMappings bool) (string, er
// handle vol if already attached // handle vol if already attached
if len(vol.MappedSdcInfo) > 0 { if len(vol.MappedSdcInfo) > 0 {
if m.isSdcMappedToVol(iid, vol) { if m.isSdcMappedToVol(iid, vol) {
klog.V(4).Info(log("skippping attachment, volume %s already attached to sdc %s", volName, iid)) klog.V(4).Info(log("skipping attachment, volume %s already attached to sdc %s", volName, iid))
return devs[vol.ID], nil return devs[vol.ID], nil
} }
} }