Skip to content

Commit 3af66fe

Browse files
fix missed vars in template (#118)
1 parent 595ca9f commit 3af66fe

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-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": "1.2.1",
3+
"version": "1.2.2",
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.1
1+
1.2.2

venonactl/pkg/store/store.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ func GetStore() *Values {
9696
func (s *Values) BuildValues() map[string]interface{} {
9797
return map[string]interface{}{
9898
"AppName": ApplicationName,
99+
"ClusterId": s.ClusterId,
99100
"Version": s.Version.Current.Version,
100101
"CodefreshHost": s.CodefreshAPI.Host,
101102
"Token": s.CodefreshAPI.Token,

venonactl/pkg/templates/kubernetes/deployment.monitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
{{- end }}
2828
containers:
2929
- name: {{ .Monitor.AppName }}
30-
image: "{{ .Image.Name }}:{{ .Image.Tag }}"
30+
image: "{{ .Monitor.Image.Name }}:{{ .Monitor.Image.Tag }}"
3131
imagePullPolicy: Always
3232
env:
3333
- name: SERVICE_NAME

venonactl/pkg/templates/kubernetes/templates.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)