fix some typos

This commit is contained in:
SataQiu 2018-10-29 18:17:45 +08:00
parent 2702b12f2b
commit 77d42267a6
3 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ Our office hours call is recorded, but the tone tends to be casual. First-timers
Office hours are designed for ALL of those contributing to kops or the community. Contributions are not limited to those who commit source code. There are so many important ways to be involved-
- helping in the slack channels
- triaging/writing issues
- thinking about the topics raised at office hours and forming and advocating for your good ideas forming opinions
- thinking about the topics raised at office hours and forming and advocating for your good ideas forming opinions
- testing pre-(and official) releases
Although not exhaustive, the above activities are extremely important to our continued success and are all worth contributions. If you want to talk about kops and you have doubt, just come.

View File

@ -21,7 +21,7 @@ import (
)
var (
// Logger is the defaut logger
// Logger is the default logger
Logger *zap.Logger
)

View File

@ -72,7 +72,7 @@ func (c *RESTClientset) ConfigBaseFor(cluster *kops.Cluster) (vfs.Path, error) {
if cluster.Spec.ConfigBase != "" {
return vfs.Context.BuildVfsPath(cluster.Spec.ConfigBase)
}
// URL for clusters looks like https://<server>/apis/kops/v1alpha2/namespaces/<cluster>/clusters/<cluster>
// URL for clusters looks like https://<server>/apis/kops/v1alpha2/namespaces/<cluster>/clusters/<cluster>
// We probably want to add a subresource for full resources
return vfs.Context.BuildVfsPath(c.BaseURL.String())
}