feat: add Linkding deployment

This commit is contained in:
Daniel Cosme
2026-04-17 20:49:37 -04:00
parent ef85cf4d7e
commit 573e8b6670
14 changed files with 221 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: linking
name: linking
namespace: linkding
spec:
selector:
matchLabels:
app: linking
strategy: {}
template:
metadata:
labels:
app: linking
spec:
containers:
- image: sissbruecket/linkding:1.31.0
name: linkding
ports:
- containerPort: 9090
resources: {}
status: {}

View File

@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: linkding
spec: {}
status: {}

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: linking
name: linking
namespace: linkding
spec:
ports:
- port: 9090
targetPort: 0
selector:
app: linking
status:
loadBalancer: {}