Skip to content

Commit

Permalink
feat: Update compute plane resource limits and node selectors in Helm…
Browse files Browse the repository at this point in the history
… chart
  • Loading branch information
jordancarrier committed Jan 16, 2025
1 parent 649cc40 commit e00ff0b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 26 deletions.
26 changes: 13 additions & 13 deletions charts/armonik/charts/compute-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -63,12 +63,12 @@ computePlane:
value: default
# ArmoniK workers
worker:
- name: "default-worker"
- name: "worker"
image: "dockerhubaneo/armonik_worker_dll"
tag: "0.12.9"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -97,7 +97,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -142,12 +142,12 @@ computePlane:
value: stream
# ArmoniK workers
worker:
- name: "default-worker"
- name: "worker"
image: "dockerhubaneo/armonik_core_stream_test_worker"
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -176,7 +176,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -226,7 +226,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -255,7 +255,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -305,7 +305,7 @@ computePlane:
tag: "0.27.2"
imagePullPolicy: "IfNotPresent"
limits:
cpu: "500Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
Expand Down Expand Up @@ -353,7 +353,7 @@ pollingAgent:
valueFrom:
secretKeyRef:
key: mongodb-root-password
name: mongodb-user
name: mongodb
optional: false
# - name: MongoDB__User
# valueFrom:
Expand Down Expand Up @@ -416,8 +416,8 @@ worker:
terminationMessagePolicy: "File"
resource:
limits:
cpu: "2"
memory: "2Gi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "50m"
memory: "50Mi"
Expand Down
22 changes: 9 additions & 13 deletions charts/armonik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ global:
############################################
control-plane:
enabled: true
#nodeSelector: {}
#nodeSelector: {control-plane}
compute-plane:
enabled: true
nodeSelector: {}
#nodeSelector: {workers}

############################################
############### DEPENDENCIES ###############
Expand Down Expand Up @@ -63,21 +63,14 @@ activemq:
mongodb:
enabled: true
replicaCount: 1
image:
repository: "arm64v8/mongo"
tag: "8.0.3"
fullnameOverride: "mongodb"
nodeSelector: {}
#nodeSelector: {state-database}
tls:
enabled: true
autoGenerated: false
standalone:
existingSecret: mongodb-crt

################## MONGODB-SHARDED ##################
mongodb-sharded:
enabled: true

################## RABBITMQ ##################
rabbitmq:
enabled: false
Expand All @@ -98,7 +91,7 @@ chaos-mesh:
################## KEDA ##################
keda:
enabled: false
#nodeSelector: {}
#nodeSelector: {monitoring}

################## NODE-EXPORTER ##################
node-exporter:
Expand All @@ -109,6 +102,7 @@ node-exporter:
metrics-server:
enabled: true
fullnameOverride: "metrics-server"
#nodeSelector: {monitoring}

################## CLUSTER-AUTOSCALER ##################
cluster-autoscaler:
Expand All @@ -126,6 +120,7 @@ cert-manager:
################## GRAFANA ##################
grafana:
enabled: true
#nodeSelector: {monitoring}
fullnameOverride: "grafana"
ingress:
enabled: true
Expand Down Expand Up @@ -189,17 +184,18 @@ seq:
fullnameOverride: "seq"
image:
tag: "2024.3"
#nodeSelector: {monitoring}

################## INGRESS ##################
ingress:
enabled: true
nodeSelector: {}
#nodeSelector: {control-plane}

################## PROMETHEUS ##################
prometheus:
enabled: true
clusterDomain: cluster.local
nodeSelector: {}
#nodeSelector: {metrics}
fullnameOverride: "prometheus"
datasources:
secretDefinition:
Expand Down

0 comments on commit e00ff0b

Please sign in to comment.