f150ae2c64
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.
21 lines
405 B
YAML
21 lines
405 B
YAML
apiVersion: autoscaling/v2
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: dancefinder-app
|
|
name: dancefinder-app
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: dancefinder-app
|
|
minReplicas: 2
|
|
maxReplicas: 4
|
|
metrics:
|
|
- type: Resource
|
|
resource:
|
|
name: cpu
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: 60
|