Some checks failed
Gitea Actions Demo / build-and-push-image (push) Failing after 30s
27 lines
522 B
YAML
27 lines
522 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myfirstkube
|
|
labels:
|
|
app: myfirstkube
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: myfirstkube
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: myfirstkube
|
|
spec:
|
|
containers:
|
|
- name: myfirstkube
|
|
image: git.tesses.org/tesses50/myfirstkube:latest
|
|
ports:
|
|
- containerPort: 4206
|
|
resources:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 500Mi
|
|
limits:
|
|
memory: 600Mi |