28 lines
530 B
YAML
28 lines
530 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: portfolio
|
|
spec:
|
|
containers:
|
|
- image: gitea.svitan.dev/streamer272/svitan.dev:latest
|
|
name: portfolio
|
|
ports:
|
|
- containerPort: 3000
|
|
name: http
|
|
protocol: TCP
|
|
resources:
|
|
requests:
|
|
cpu: "500m"
|
|
memory: "32Mi"
|
|
limits:
|
|
cpu: "2000m"
|
|
memory: "256Mi"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 3000
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
failureThreshold: 3
|