]> Untitled Git - lemmy.git/blob - ui/stack.dev.yaml
Adding emoji support
[lemmy.git] / ui / stack.dev.yaml
1 ---
2 apiVersion: apps/v1
3 kind: Deployment
4 metadata:
5   name: lemmy-ui--dev
6 spec:
7   selector:
8     matchLabels:
9       app: lemmy-ui--dev
10   template:
11     metadata:
12       labels:
13         app: lemmy-ui--dev
14     spec:
15       containers:
16         - name: lemmy-ui--dev
17           image: registry.gitlab.com/pojntfx/lemmy/ui.dev
18           resources:
19             limits:
20               memory: 1024Mi
21               cpu: 512m
22           ports:
23             - containerPort: 4444
24 ---
25 apiVersion: v1
26 kind: Service
27 metadata:
28   name: lemmy-ui--dev
29 spec:
30   type: NodePort
31   selector:
32     app: lemmy-ui--dev
33   ports:
34     - port: 4444
35       nodePort: 30002