fix(k8s): standardize app label to app.kubernetes.io/name

Update Kubernetes YAML files to replace the app label with the 
standard app.kubernetes.io/name label for better consistency 
and adherence to best practices in Kubernetes resource labeling.
This commit is contained in:
2025-01-24 15:14:13 +01:00
parent c5dcc6f87a
commit 74823a8947
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler kind: HorizontalPodAutoscaler
metadata: metadata:
labels: labels:
app: schemas app.kubernetes.io/name: schemas
name: schemas name: schemas
spec: spec:
scaleTargetRef: scaleTargetRef:
+5 -5
View File
@@ -7,7 +7,7 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app: schemas app.kubernetes.io/name: schemas
name: schemas name: schemas
annotations: annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}" kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
@@ -15,7 +15,7 @@ spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app: schemas app.kubernetes.io/name: schemas
strategy: strategy:
rollingUpdate: rollingUpdate:
maxSurge: 1 maxSurge: 1
@@ -24,7 +24,7 @@ spec:
template: template:
metadata: metadata:
labels: labels:
app: schemas app.kubernetes.io/name: schemas
spec: spec:
affinity: affinity:
podAntiAffinity: podAntiAffinity:
@@ -33,7 +33,7 @@ spec:
podAffinityTerm: podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: "app" - key: "app.kubernetes.io/name"
operator: In operator: In
values: values:
- schemas - schemas
@@ -79,5 +79,5 @@ spec:
protocol: TCP protocol: TCP
targetPort: 8080 targetPort: 8080
selector: selector:
app: schemas app.kubernetes.io/name: schemas
type: NodePort type: NodePort