AppManager: Use port numbers in ingress definitions
Change-Id: I6d69566667490aac70597387c59cecbb8601a5a8
diff --git a/core/installer/values-tmpl/launcher.cue b/core/installer/values-tmpl/launcher.cue
index 7b6e8b5..9118275 100644
--- a/core/installer/values-tmpl/launcher.cue
+++ b/core/installer/values-tmpl/launcher.cue
@@ -17,7 +17,7 @@
description: "The application is a App launcher, designed to run all accessible applications. Can be configured to be reachable only from private network or publicly."
icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><path fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' d='M42.5 23.075L26.062 7.525a3 3 0 0 0-4.124 0L5.5 23.075m5.86 1.54v14.68a2 2 0 0 0 2 2h7.14v-9.5h7v9.5h7.14a2 2 0 0 0 2-2v-14.68'/></svg>"
-_httpPortName: "http"
+_webPort: 8080
out: {
ingress: {
@@ -27,7 +27,7 @@
subdomain: _subdomain
service: {
name: "launcher"
- port: name: _httpPortName
+ port: _webPort
}
}
}
@@ -59,7 +59,7 @@
tag: images.launcher.tag
pullPolicy: images.launcher.pullPolicy
}
- portName: _httpPortName
+ port: _webPort
repoAddr: input.repoAddr
sshPrivateKey: base64.Encode(null, input.sshPrivateKey)
logoutUrl: "https://accounts-ui.\(networks.public.domain)/logout"