Skip to content

Commit

Permalink
fix attach when context contains column (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
oren-codefresh authored Jun 18, 2020
1 parent 0bcb90b commit 0988af7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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": "1.3.6",
"version": "1.3.7",

"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion venonactl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.6
1.3.7
1 change: 1 addition & 0 deletions venonactl/pkg/plugins/runtime-attach.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ func (u *runtimeAttachPlugin) Install(opt *InstallOptions, v Values) (Values, er
// normalize the key in the secret to make sure we are not violating kube naming conventions
name := strings.ReplaceAll(opt.RuntimeEnvironment, "/", ".")
name = strings.ReplaceAll(name, "@", ".")
name = strings.ReplaceAll(name, ":", ".")
currentVenonaConf.Runtimes[fmt.Sprintf("%s.runtime.yaml", name)] = rc
runtimes := map[string]string{}
for name, runtime := range currentVenonaConf.Runtimes {
Expand Down

0 comments on commit 0988af7

Please sign in to comment.