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

View File

@@ -7,7 +7,7 @@ metadata:
namespace: linkding
spec:
ports:
- nodePort: 9090
- nodePort: 30010
port: 9090
targetPort: 0
selector:

View File

@@ -17,7 +17,7 @@ func init() {
meta = kube.NewMetadata("linking", Namespace)
srv = meta.Service(root.Linkding.Port)
srv.Spec.Type = core.ServiceTypeNodePort
srv.Spec.Ports[0].NodePort = root.Linkding.Port
srv.Spec.Ports[0].NodePort = 30010
pvc = meta.PVC()
}