- 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>
21 lines
432 B
YAML
21 lines
432 B
YAML
apiVersion: autoscaling.k8s.io/v1
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
name: zookeeper-vpa
|
|
namespace: freeleaps-data-platform
|
|
spec:
|
|
resourcePolicy:
|
|
containerPolicies:
|
|
- containerName: '*'
|
|
controlledResources:
|
|
- cpu
|
|
- memory
|
|
maxAllowed:
|
|
cpu: 200m
|
|
memory: 512Mi
|
|
targetRef:
|
|
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
name: zookeeper
|
|
updatePolicy:
|
|
updateMode: "Auto" |