Skip to content

Commit

Permalink
Fix grammatical error
Browse files Browse the repository at this point in the history
  • Loading branch information
Evalle committed Aug 12, 2020
1 parent 93e6d23 commit d9e856c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pkg/apis/kops/componentconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -581,9 +581,9 @@ type KubeControllerManagerConfig struct {
ConcurrentServiceaccountTokenSyncs *int32 `json:"concurrentServiceaccountTokenSyncs,omitempty" flag:"concurrent-serviceaccount-token-syncs"`
// The number of replicationcontroller objects that are allowed to sync concurrently.
ConcurrentRcSyncs *int32 `json:"concurrentRcSyncs,omitempty" flag:"concurrent-rc-syncs"`
// AuthenticationKubeconfig is the path to a Authentication Kubeconfig
// AuthenticationKubeconfig is the path to an Authentication Kubeconfig
AuthenticationKubeconfig string `json:"authenticationKubeconfig,omitempty" flag:"authentication-kubeconfig"`
// AuthorizationKubeconfig is the path to a Authorization Kubeconfig
// AuthorizationKubeconfig is the path to an Authorization Kubeconfig
AuthorizationKubeconfig string `json:"authorizationKubeconfig,omitempty" flag:"authorization-kubeconfig"`

// EnableProfiling enables profiling via web interface host:port/debug/pprof/
Expand Down Expand Up @@ -640,9 +640,9 @@ type KubeSchedulerConfig struct {
Qps *resource.Quantity `json:"qps,omitempty" configfile:"ClientConnection.QPS"`
// Burst sets the maximum qps to send to apiserver after the burst quota is exhausted
Burst int32 `json:"burst,omitempty" configfile:"ClientConnection.Burst"`
// AuthenticationKubeconfig is the path to a Authentication Kubeconfig
// AuthenticationKubeconfig is the path to an Authentication Kubeconfig
AuthenticationKubeconfig string `json:"authenticationKubeconfig,omitempty" flag:"authentication-kubeconfig"`
// AuthorizationKubeconfig is the path to a Authorization Kubeconfig
// AuthorizationKubeconfig is the path to an Authorization Kubeconfig
AuthorizationKubeconfig string `json:"authorizationKubeconfig,omitempty" flag:"authorization-kubeconfig"`

// EnableProfiling enables profiling via web interface host:port/debug/pprof/
Expand Down
8 changes: 4 additions & 4 deletions pkg/apis/kops/v1alpha2/componentconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ type KubeControllerManagerConfig struct {
// The number of replicationcontroller objects that are allowed to sync concurrently.
// This only works on kubernetes >= 1.14
ConcurrentRcSyncs *int32 `json:"concurrentRcSyncs,omitempty" flag:"concurrent-rc-syncs"`
// AuthenticationKubeconfig is the path to a Authentication Kubeconfig
// AuthenticationKubeconfig is the path to an Authentication Kubeconfig
AuthenticationKubeconfig string `json:"authenticationKubeconfig,omitempty" flag:"authentication-kubeconfig"`
// AuthorizationKubeconfig is the path to a Authorization Kubeconfig
// AuthorizationKubeconfig is the path to an Authorization Kubeconfig
AuthorizationKubeconfig string `json:"authorizationKubeconfig,omitempty" flag:"authorization-kubeconfig"`

// EnableProfiling enables profiling via web interface host:port/debug/pprof/
Expand Down Expand Up @@ -641,9 +641,9 @@ type KubeSchedulerConfig struct {
Qps *resource.Quantity `json:"qps,omitempty"`
// Burst sets the maximum qps to send to apiserver after the burst quota is exhausted
Burst int32 `json:"burst,omitempty"`
// AuthenticationKubeconfig is the path to a Authentication Kubeconfig
// AuthenticationKubeconfig is the path to an Authentication Kubeconfig
AuthenticationKubeconfig string `json:"authenticationKubeconfig,omitempty" flag:"authentication-kubeconfig"`
// AuthorizationKubeconfig is the path to a Authorization Kubeconfig
// AuthorizationKubeconfig is the path to an Authorization Kubeconfig
AuthorizationKubeconfig string `json:"authorizationKubeconfig,omitempty" flag:"authorization-kubeconfig"`

// EnableProfiling enables profiling via web interface host:port/debug/pprof/
Expand Down

0 comments on commit d9e856c

Please sign in to comment.