Skip to content

Commit dffebc1

Browse files
author
Oleg Sucharevich
authored
fix typos (#62)
1 parent 034e4e3 commit dffebc1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venona",
3-
"version": "0.28.0",
3+
"version": "0.28.1",
44
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
55
"main": "index.js",
66
"scripts": {

venonactl/pkg/codefresh/cfapi.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type (
4343
IsDefaultStorageClass bool
4444
KubernetesRunnerType bool
4545
BuildNodeSelector map[string]string
46-
Annootaions map[string]string
46+
Annotations map[string]string
4747
}
4848

4949
RuntimeEnvironmentRegistrator interface {
@@ -88,7 +88,7 @@ func NewCodefreshAPI(opt *APIOptions) API {
8888
isDefaultStorageClass: opt.IsDefaultStorageClass,
8989
kubernetesRunnerType: opt.KubernetesRunnerType,
9090
buildNodeSelector: opt.BuildNodeSelector,
91-
annotations: opt.Annootaions,
91+
annotations: opt.Annotations,
9292
}
9393
}
9494

venonactl/pkg/plugins/runtime-environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func (u *runtimeEnvironmentPlugin) Install(opt *InstallOptions, v Values) (Value
5353
IsDefaultStorageClass: opt.IsDefaultStorageClass,
5454
KubernetesRunnerType: opt.KubernetesRunnerType,
5555
BuildNodeSelector: opt.BuildNodeSelector,
56-
Annootaions: opt.Annotations,
56+
Annotations: opt.Annotations,
5757
}
5858

5959
cf := codefresh.NewCodefreshAPI(cfOpt)

0 commit comments

Comments
 (0)