- Updated Kafka configuration to specify Kubernetes version and API versions. - Enabled Vertical Pod Autoscaler (VPA) for Pinot and adjusted resource limits for CPU and memory. - Removed obsolete certificate configuration for Pinot. - Enhanced StarRocks values.yaml with comprehensive configurations for deployment, including service specifications and resource requests/limits. - Increased timeout settings in production values for Freeleaps to improve service resilience. Signed-off-by: zhenyus <zhenyus@mathmast.com>
43 lines
897 B
YAML
43 lines
897 B
YAML
apiVersion: autoscaling.k8s.io/v1
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
name: starrocks-fe-vpa
|
|
namespace: freeleaps-data-platform
|
|
spec:
|
|
resourcePolicy:
|
|
containerPolicies:
|
|
- containerName: '*'
|
|
controlledResources:
|
|
- cpu
|
|
- memory
|
|
maxAllowed:
|
|
cpu: 500m
|
|
memory: 2Gi
|
|
targetRef:
|
|
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
name: freeleaps-starrocks-fe
|
|
updatePolicy:
|
|
updateMode: "Auto"
|
|
---
|
|
apiVersion: autoscaling.k8s.io/v1
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
name: starrocks-be-vpa
|
|
namespace: freeleaps-data-platform
|
|
spec:
|
|
resourcePolicy:
|
|
containerPolicies:
|
|
- containerName: '*'
|
|
controlledResources:
|
|
- cpu
|
|
- memory
|
|
maxAllowed:
|
|
cpu: 500m
|
|
memory: 2Gi
|
|
targetRef:
|
|
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
name: freeleaps-starrocks-be
|
|
updatePolicy:
|
|
updateMode: "Auto" |