Skip to content

Commit 60906c0

Browse files
Saas 7239 (#133)
Fix kube-node-selector
1 parent 433056e commit 60906c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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": "1.2.9",
3+
"version": "1.2.10",
44
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
55
"main": "index.js",
66
"scripts": {

venonactl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.9
1+
1.2.10

venonactl/cmd/cmdutils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func extendStoreWithAgentAPI(logger logger.Logger, token string, agentID string)
241241
func (ns nodeSelector) String() string {
242242
var s string
243243
for k, v := range ns {
244-
s = fmt.Sprintf("%s: %q", k, v)
244+
s = fmt.Sprintf("%s: %s", k, v)
245245
}
246246
return s
247247
}

0 commit comments

Comments
 (0)