ci: update hello-world app files

This commit is contained in:
Ansible
2026-09-22 19:43:25 +02:00
commit c91103f895
6 changed files with 247 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-world
namespace: hello-world
spec:
replicas: 2
selector:
matchLabels:
app: hello-world
template:
metadata:
labels:
app: hello-world
spec:
imagePullSecrets:
- name: harbor-pull-secret
containers:
- name: hello-world
image: harbor.gleb-test-k3s.app.ariki.ai/gleb-test-k3s/hello-world:latest
ports:
- containerPort: 80
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 100m
memory: 128Mi
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 5