You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/administration/codefresh-runner.md
+117Lines changed: 117 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1601,6 +1601,123 @@ Override environment variables for `dind-lv-monitor` daemonset if necessary:
1601
1601
-`KB_USAGE_THRESHOLD` - default 80 (percentage)
1602
1602
-`INODE_USAGE_THRESHOLD` - default 80
1603
1603
1604
+
## ARM Builds
1605
+
1606
+
With hybrid runner it's possibe to run native ARM64v8 builds.
1607
+
1608
+
>**Note:** Running both amd64 and arm64 images within the same pipeline - it is not possible. We do not support multi-architecture builds. One runtime configuration - one architecture. Considering one pipeline can map only to one runtime, it is possible to run either amd64 or arm64, but not both within a one pipeline
1609
+
1610
+
The following scenario is an example of how to set up ARM Runner on existing EKS cluster:
Use [values.yaml](https://github.com/codefresh-io/venona/blob/release-1.0/venonactl/example/values-example.yaml) to inject `tolerations`, `kube-node-selector`, `build-node-selector` into the Runtime Environment spec.
1645
+
1646
+
`values-arm.yaml`
1647
+
1648
+
{% highlight yaml %}
1649
+
{% raw %}
1650
+
...
1651
+
Namespace: codefresh
1652
+
1653
+
### NodeSelector --kube-node-selector: controls runner and dind-volume-provisioner pods
1654
+
NodeSelector: arch=arm
1655
+
1656
+
### Tolerations --tolerations: controls runner, dind-volume-provisioner and dind-lv-monitor
0 commit comments