Ingress: Fix chart port value

Change-Id: Ic03c05be92fc1f2d3324c662f4b2400c17e64d1d
diff --git a/charts/ingress/Chart.yaml b/charts/ingress/Chart.yaml
index 28df2c4..34be2d0 100644
--- a/charts/ingress/Chart.yaml
+++ b/charts/ingress/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v2
-name: rpuppy
+name: ingress
 description: A Helm chart to configure ingress
 type: application
 version: 0.0.1
diff --git a/charts/service/Chart.yaml b/charts/service/Chart.yaml
index 6141c00..245e53b 100644
--- a/charts/service/Chart.yaml
+++ b/charts/service/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v2
-name: rpuppy
+name: service
 description: A Helm chart for Kubernetes service definition
 type: application
 version: 0.0.1
diff --git a/core/installer/app_configs/app_global_env.cue b/core/installer/app_configs/app_global_env.cue
index 6f23961..cd98be0 100644
--- a/core/installer/app_configs/app_global_env.cue
+++ b/core/installer/app_configs/app_global_env.cue
@@ -138,7 +138,7 @@
 					}
 					service: {
 						name: _service.name
-						port: _service.port
+						port: number: _service.port
 					}
 				}
 			}
@@ -164,7 +164,7 @@
 					service: {
 						if auth.enabled {
 							name: _authProxyName
-							port: _authProxyHTTPPortName
+							port: name: _authProxyHTTPPortName
 						}
 						if !auth.enabled {
 							// TODO(gio): make this variables part of the env configuration
@@ -196,11 +196,11 @@
 					service: {
 						if auth.enabled {
 							name: _authProxyName
-							port: _authProxyHTTPPortName
+							port: name: _authProxyHTTPPortName
 						}
 						if !auth.enabled {
 							name: _service.name
-							port: _service.port
+							port: number: _service.port
 						}
 					}
 				}