Skip to content

Commit

Permalink
fix typos (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Sucharevich authored Oct 5, 2019
1 parent 034e4e3 commit dffebc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "venona",
"version": "0.28.0",
"version": "0.28.1",
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions venonactl/pkg/codefresh/cfapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type (
IsDefaultStorageClass bool
KubernetesRunnerType bool
BuildNodeSelector map[string]string
Annootaions map[string]string
Annotations map[string]string
}

RuntimeEnvironmentRegistrator interface {
Expand Down Expand Up @@ -88,7 +88,7 @@ func NewCodefreshAPI(opt *APIOptions) API {
isDefaultStorageClass: opt.IsDefaultStorageClass,
kubernetesRunnerType: opt.KubernetesRunnerType,
buildNodeSelector: opt.BuildNodeSelector,
annotations: opt.Annootaions,
annotations: opt.Annotations,
}
}

Expand Down
2 changes: 1 addition & 1 deletion venonactl/pkg/plugins/runtime-environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (u *runtimeEnvironmentPlugin) Install(opt *InstallOptions, v Values) (Value
IsDefaultStorageClass: opt.IsDefaultStorageClass,
KubernetesRunnerType: opt.KubernetesRunnerType,
BuildNodeSelector: opt.BuildNodeSelector,
Annootaions: opt.Annotations,
Annotations: opt.Annotations,
}

cf := codefresh.NewCodefreshAPI(cfOpt)
Expand Down

0 comments on commit dffebc1

Please sign in to comment.