mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
36 lines
632 B
YAML
36 lines
632 B
YAML
---
|
|
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
|