High Availability
frontend: replicaCount: 1 # recommended minimum config 2 autoscaling: enabled: true # Set to 'true' to enable autoscaling(by default false) minReplicas: "1" maxReplicas: "5" # Adjust this based on your requirements targetCPU: "75" # Target CPU utilization percentage targetMemory: "75" # Target Memory utilization percentage resources: requests: cpu: 250m memory: 512Mi
history: replicaCount: 1 # Should be set to value of numHistoryShards / 512 autoscaling: enabled: false # autoscaling for history not recommended resources: requests: cpu: 500m # recommended 1000m memory: 1048Mi # recommended 2048
matching: replicaCount: 1 # Recommended min config 2 autoscaling: enabled: true # Enable autoscaling for matching minReplicas: "1" # Same as replicaCount maxReplicas: "5" # Adjust this based on your requirements targetCPU: "75" # Target CPU utilization percentage targetMemory: "75" # Target Memory utilization percentage resources: requests: cpu: 250m memory: 512Mi
worker: replicaCount: 1 # Recommended min config 2 autoscaling: enabled: false # Enable autoscaling for worker minReplicas: "1" # Same as replicaCount maxReplicas: "1" # Adjust this based on your requirements targetCPU: "75" # Target CPU utilization percentage targetMemory: "75" # Target Memory utilization percentage resources: requests: cpu: 200m memory: 512Mi
# vidhaan-executer chart to be updated vidhaan-executer: enabled: true replicaCount: 1 # Recommended min config 2 . . . resources: requests: cpu: "250m" memory: "512Mi" limits: cpu: "500m" memory: "1024Mi" autoscaling: enabled: false # Enable autoscaling for executer minReplicas: 1 maxReplicas: 1 targetCPUUtilizationPercentage: 80 targetMemoryUtilizationPercentage: 80
# vidhaan-router chart to be updated vidhaan-router: enabled: true replicaCount: 1 # Recommended min config 2 . . . resources: requests: cpu: "250m" memory: "512Mi" limits: cpu: "250m" memory: "1024Mi" autoscaling: enabled: false # Enable autoscaling minReplicas: 1 maxReplicas: 1 targetCPUUtilizationPercentage: 80 targetMemoryUtilizationPercentage: 80
Last updated