Skip to content

What are the default resource limits for runners? #2946

Answered by ealasgarov
zxti asked this question in FAQs
Discussion options

You must be logged in to vote

if they are not specified specifically, then this will be defined by the namespace limits range, but you can specify resources block at the bottom of values.yaml file in gha-runner-scale-set helm deployment, e.g.:

  spec:
    containers:
      - name: runner
        image: ghcr.io/actions/actions-runner:latest
        command: ["/home/runner/run.sh"]
        resources:
            limits:
              cpu: "2000m"
              memory: "8Gi"
            requests:
              cpu: "500m"
              memory: "4Gi"
    tolerations:
    - effect: NoSchedule
      key: kubernetes.azure.com/scalesetpriority
      operator: Equal
      value: spot
    - effect: NoSchedule
      key: os_type…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by nikola-jokic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
FAQs
Labels
None yet
2 participants