Skip to content

Commit 0988af7

Browse files
fix attach when context contains column (#154)
1 parent 0bcb90b commit 0988af7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venona",
3-
"version": "1.3.6",
3+
"version": "1.3.7",
44

55
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
66
"main": "index.js",

venonactl/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.6
1+
1.3.7

venonactl/pkg/plugins/runtime-attach.go

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ func (u *runtimeAttachPlugin) Install(opt *InstallOptions, v Values) (Values, er
129129
// normalize the key in the secret to make sure we are not violating kube naming conventions
130130
name := strings.ReplaceAll(opt.RuntimeEnvironment, "/", ".")
131131
name = strings.ReplaceAll(name, "@", ".")
132+
name = strings.ReplaceAll(name, ":", ".")
132133
currentVenonaConf.Runtimes[fmt.Sprintf("%s.runtime.yaml", name)] = rc
133134
runtimes := map[string]string{}
134135
for name, runtime := range currentVenonaConf.Runtimes {

0 commit comments

Comments
 (0)