fix: nodeport value for linkding

This commit is contained in:
Daniel Cosme
2026-04-18 12:11:50 -04:00
parent 88eccb3fe9
commit 3d1854f2c7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ metadata:
namespace: linkding namespace: linkding
spec: spec:
ports: ports:
- nodePort: 9090 - nodePort: 30010
port: 9090 port: 9090
targetPort: 0 targetPort: 0
selector: selector:
+1 -1
View File
@@ -17,7 +17,7 @@ func init() {
meta = kube.NewMetadata("linking", Namespace) meta = kube.NewMetadata("linking", Namespace)
srv = meta.Service(root.Linkding.Port) srv = meta.Service(root.Linkding.Port)
srv.Spec.Type = core.ServiceTypeNodePort srv.Spec.Type = core.ServiceTypeNodePort
srv.Spec.Ports[0].NodePort = root.Linkding.Port srv.Spec.Ports[0].NodePort = 30010
pvc = meta.PVC() pvc = meta.PVC()
} }