Files
dancefinder-app/k8s/deploy.yaml
T
argoyle f150ae2c64 fix: update app labels to use correct Kubernetes naming
Refactor Kubernetes resource definitions to replace the label  
"app" with "app.kubernetes.io/name" for the dancefinder-app.  
This change enhances consistency with Kubernetes best practices  
and improves clarity in resource labeling across deployments,  
services, and autoscalers.
2025-01-24 16:46:49 +01:00

74 lines
1.7 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: dancefinder-app
labels:
app.kubernetes.io/name: dancefinder-app
annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
spec:
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 30
selector:
matchLabels:
app.kubernetes.io/name: dancefinder-app
template:
metadata:
labels:
app.kubernetes.io/name: dancefinder-app
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app.kubernetes.io/name"
operator: In
values:
- dancefinder-app
topologyKey: kubernetes.io/hostname
containers:
- name: dancefinder-app
readinessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
imagePullPolicy: Always
image: registry.gitlab.com/unboundsoftware/dancefinder/dancefinder-app:${COMMIT}
ports:
- containerPort: 80
resources:
requests:
cpu: 10m
memory: 10Mi
limits:
cpu: 300m
memory: 300Mi
---
apiVersion: v1
kind: Service
metadata:
name: dancefinder-app
labels:
app.kubernetes.io/name: dancefinder-app
spec:
type: NodePort
selector:
app.kubernetes.io/name: dancefinder-app
ports:
- port: 80
targetPort: 80