update
diff --git a/charts/appmanager/templates/install.yaml b/charts/appmanager/templates/install.yaml
index 8cfb306..f711028 100644
--- a/charts/appmanager/templates/install.yaml
+++ b/charts/appmanager/templates/install.yaml
@@ -53,8 +53,8 @@
   selector:
     app: appmanager
   ports:
-  - name: {{ .Values.portName }}
-    port: 80
+  - name: http
+    port: {{ .Values.port }}
     targetPort: http
     protocol: TCP
 ---
@@ -83,7 +83,7 @@
         imagePullPolicy: {{ .Values.image.pullPolicy }}
         ports:
         - name: http
-          containerPort: 8080
+          containerPort: {{ .Values.port }}
           protocol: TCP
         command:
         - pcloud-installer
@@ -93,7 +93,7 @@
         - --headscale-api-addr={{ .Values.headscaleAPIAddr }}
         - --dns-api-addr={{ .Values.dnsAPIAddr }}
         - --cluster-proxy-config-path={{ .Values.clusterProxyConfigPath }}
-        - --port=8080
+        - --port={{ .Values.port }}
         {{- if .Values.appRepoAddr }}
         - --app-repo-addr={{ .Values.appRepoAddr }}
         {{- end}}