Skip to content

Commit

Permalink
Update appVersion to 1.0.1 and document resource estimates.
Browse files Browse the repository at this point in the history
  • Loading branch information
macb committed Oct 23, 2023
1 parent 37792f5 commit b811e94
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/vantage-kubernetes-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: vantage-kubernetes-agent
description: Provisions the Vantage Kubernetes agent.
type: application
version: 1.0.3
appVersion: "1.0.0"
version: 1.0.4
appVersion: "1.0.1"
icon: "https://www.vantage.sh/nav-logo.svg"
4 changes: 0 additions & 4 deletions charts/vantage-kubernetes-agent/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ spec:
- name: {{ .Values.service.name }}
containerPort: {{ .Values.service.port }}
protocol: TCP
livenessProbe:
httpGet:
path: /healthz
port: {{ .Values.service.name }}
readinessProbe:
httpGet:
path: /healthz
Expand Down
12 changes: 10 additions & 2 deletions charts/vantage-kubernetes-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,20 @@ service:
type: ClusterIP
port: 9010

# These limits are set low to support small clusters (~10nodes) and should be considered minimum values for deploying an agent.
# Estimates for later clusters are roughly:
# ~2CPU/1000node
# ~1MB/node
# ~16KB/container
# ie: 100 node cluster with 3000 containers (10 pods per node, 3 containers per pod) would be approximately 150MB and 200mCPU
# These are estimates and will vary based on node density, label usage, cluster activity, etc.
# Agent should reach an approximate steady state after about 1hour of uptime and can be tuned accordingly after the fact.
resources:
limits:
cpu: 10m
cpu: 100m
memory: 50Mi
requests:
cpu: 10m
cpu: 100m
memory: 50Mi


Expand Down

0 comments on commit b811e94

Please sign in to comment.