mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-16 01:25:09 +01:00
25 lines
539 B
YAML
25 lines
539 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: hugo-chat-frontend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: hugo-chat-frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: hugo-chat-frontend
|
|
spec:
|
|
containers:
|
|
- name: hugo-chat-frontend
|
|
image: docker.nilstrieb.dev/hugo-chat-frontend:1.1
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
limits:
|
|
cpu: 200m
|
|
memory: 300M
|
|
imagePullSecrets:
|
|
- name: docker-nilstrieb-dev-login
|