Skip to content

Commit f662973

Browse files
Fix app proxy installation values (#217)
* fix app-proxy annotations bug
1 parent 815ff95 commit f662973

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

venona/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.13
1+
1.5.14

venonactl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.13
1+
1.5.14

venonactl/pkg/templates/kubernetes/ingress.app-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
annotations:
55
{{ if ne .AppProxy.Ingress.IngressClass "" }}kubernetes.io/ingress.class: {{ .AppProxy.Ingress.IngressClass }}{{ end }}
66
{{ range $key, $value := .AppProxy.Ingress.Annotations }}
7-
{{ $key }}: {{ $value }}
7+
{{ $key }}: {{ $value | quote | unescape }}
88
{{ end }}
99
name: app-proxy
1010
namespace: {{ .Namespace }}

venonactl/pkg/templates/kubernetes/service-account.app-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: {{ .Namespace }}
77
annotations:
88
{{ range $key, $value := .AppProxy.ServiceAccount.Annotations }}
9-
{{ $key }}: {{ $value }}
9+
{{ $key }}: {{ $value | quote | unescape }}
1010
{{ end }}
1111
labels:
1212
app: {{ .AppProxy.AppName }}

venonactl/pkg/templates/kubernetes/templates.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)