this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixing up issues with arm64 runners.

+57 -2
+1
cluster/apps/ci/github-actions/runners/kustomization.yaml
··· 7 7 - externalsecret.yaml 8 8 - samipsolutions-runners.yaml 9 9 - samip5-k8s-cluster.yaml 10 + - samip5-k8s-cluster-arm64.yaml
+51
cluster/apps/ci/github-actions/runners/samip5-k8s-cluster-arm64.yaml
··· 1 + --- 2 + apiVersion: helm.toolkit.fluxcd.io/v2beta1 3 + kind: HelmRelease 4 + metadata: 5 + name: arc-cluster-x64 6 + namespace: gh-runners 7 + spec: 8 + interval: 30m 9 + chart: 10 + spec: 11 + chart: gha-runner-scale-set 12 + version: 0.4.0 13 + sourceRef: 14 + kind: HelmRepository 15 + name: actions-runner-controller 16 + namespace: flux-system 17 + interval: 30m 18 + 19 + values: 20 + runnerScaleSetName: arc-cluster-arm64 21 + runnerGroup: default-arm64 22 + 23 + githubConfigUrl: https://github.com/samip5/k8s-cluster 24 + 25 + minRunners: 1 26 + maxRunners: 4 27 + 28 + containerMode: 29 + type: "dind" 30 + 31 + template: 32 + spec: 33 + containers: 34 + - name: runner 35 + image: ghcr.io/bjw-s/github-actions-runner:2.305.0@sha256:af5d39b9eee1be431060da4be699b8432af302cd7e12cadccc9d494efd0450f1 36 + nodeSelector: 37 + kubernetes.io/arch: arm64 38 + 39 + valuesFrom: 40 + - kind: Secret 41 + name: actions-runner-home-ops-secret 42 + valuesKey: github_app_id 43 + targetPath: githubConfigSecret.github_app_id 44 + - kind: Secret 45 + name: actions-runner-home-ops-secret 46 + valuesKey: github_app_installation_id 47 + targetPath: githubConfigSecret.github_app_installation_id 48 + - kind: Secret 49 + name: actions-runner-home-ops-secret 50 + valuesKey: github_app_private_key 51 + targetPath: githubConfigSecret.github_app_private_key
+5 -2
cluster/apps/ci/github-actions/runners/samip5-k8s-cluster.yaml
··· 2 2 apiVersion: helm.toolkit.fluxcd.io/v2beta1 3 3 kind: HelmRelease 4 4 metadata: 5 - name: arc-cluster 5 + name: arc-cluster-x64 6 6 namespace: gh-runners 7 7 spec: 8 8 interval: 30m ··· 17 17 interval: 30m 18 18 19 19 values: 20 - runnerScaleSetName: arc-cluster 20 + runnerScaleSetName: arc-cluster-x64 21 + runnerGroup: default 21 22 22 23 githubConfigUrl: https://github.com/samip5/k8s-cluster 23 24 ··· 32 33 containers: 33 34 - name: runner 34 35 image: ghcr.io/bjw-s/github-actions-runner:2.305.0@sha256:af5d39b9eee1be431060da4be699b8432af302cd7e12cadccc9d494efd0450f1 36 + nodeSelector: 37 + kubernetes.io/arch: amd64 35 38 36 39 valuesFrom: 37 40 - kind: Secret