summaryrefslogtreecommitdiffstats
path: root/ui/stack.dev.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'ui/stack.dev.yaml')
-rw-r--r--ui/stack.dev.yaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/ui/stack.dev.yaml b/ui/stack.dev.yaml
new file mode 100644
index 00000000..bb7c62e8
--- /dev/null
+++ b/ui/stack.dev.yaml
@@ -0,0 +1,35 @@
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: lemmy-ui--dev
+spec:
+ selector:
+ matchLabels:
+ app: lemmy-ui--dev
+ template:
+ metadata:
+ labels:
+ app: lemmy-ui--dev
+ spec:
+ containers:
+ - name: lemmy-ui--dev
+ image: registry.gitlab.com/pojntfx/lemmy/ui.dev
+ resources:
+ limits:
+ memory: 1024Mi
+ cpu: 512m
+ ports:
+ - containerPort: 4444
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: lemmy-ui--dev
+spec:
+ type: NodePort
+ selector:
+ app: lemmy-ui--dev
+ ports:
+ - port: 4444
+ nodePort: 30002