Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions runner controller group to v0.9.0 (minor) #1252

Merged
merged 1 commit into from
Mar 27, 2024

Conversation

ro-bott[bot]
Copy link
Contributor

@ro-bott ro-bott bot commented Mar 27, 2024

This PR contains the following updates:

Package Update Change
gha-runner-scale-set minor 0.8.3 -> 0.9.0
gha-runner-scale-set-controller minor 0.8.3 -> 0.9.0

Release Notes

actions/actions-runner-controller (gha-runner-scale-set)

v0.9.0

Changelog
  • Prefer autoscaling based on jobs rather than workflows if available (#​114)
  • Update runner to v2.273.5 (#​111)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

| datasource | package                                                                          | from  | to    |
| ---------- | -------------------------------------------------------------------------------- | ----- | ----- |
| docker     | ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set            | 0.8.3 | 0.9.0 |
| docker     | ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set-controller | 0.8.3 | 0.9.0 |
@ro-bott ro-bott bot added renovate/container type/minor area/kubernetes Changes made in the kubernetes directory cluster/main labels Mar 27, 2024
@ro-bott
Copy link
Contributor Author

ro-bott bot commented Mar 27, 2024

--- kubernetes/main/apps/actions-runner-system/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: actions-runner-system/arc-home-ops

+++ kubernetes/main/apps/actions-runner-system/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: actions-runner-system/arc-home-ops

@@ -13,13 +13,13 @@

     spec:
       chart: gha-runner-scale-set
       sourceRef:
         kind: HelmRepository
         name: actions-runner-controller
         namespace: flux-system
-      version: 0.8.3
+      version: 0.9.0
   install:
     remediation:
       retries: 3
   interval: 30m
   uninstall:
     keepHistory: false
--- kubernetes/main/apps/actions-runner-system/actions-runner-controller/app Kustomization: flux-system/actions-runner-controller HelmRelease: actions-runner-system/actions-runner-controller

+++ kubernetes/main/apps/actions-runner-system/actions-runner-controller/app Kustomization: flux-system/actions-runner-controller HelmRelease: actions-runner-system/actions-runner-controller

@@ -13,13 +13,13 @@

     spec:
       chart: gha-runner-scale-set-controller
       sourceRef:
         kind: HelmRepository
         name: actions-runner-controller
         namespace: flux-system
-      version: 0.8.3
+      version: 0.9.0
   install:
     crds: CreateReplace
     remediation:
       retries: 3
   interval: 30m
   uninstall:

@ro-bott
Copy link
Contributor Author

ro-bott bot commented Mar 27, 2024

--- HelmRelease: actions-runner-system/arc-home-ops AutoscalingRunnerSet: actions-runner-system/arc-runner-set-home-ops

+++ HelmRelease: actions-runner-system/arc-home-ops AutoscalingRunnerSet: actions-runner-system/arc-runner-set-home-ops

@@ -10,12 +10,13 @@

     app.kubernetes.io/instance: arc-runner-set-home-ops
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: arc-runner-set-home-ops
     actions.github.com/scale-set-namespace: actions-runner-system
   annotations:
+    actions.github.com/values-hash: 62b77cb4b34deaf7f677f7ce8cd07d9370c7f21bb76de12ec3a620b9a24875e
     actions.github.com/cleanup-github-secret-name: arc-runner-set-home-ops-gha-rs-github-secret
     actions.github.com/cleanup-manager-role-binding: arc-runner-set-home-ops-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: arc-runner-set-home-ops-gha-rs-manager
     actions.github.com/cleanup-no-permission-service-account-name: arc-runner-set-home-ops-gha-rs-no-permission
 spec:
   githubConfigUrl: https://github.com/rodent1/home-ops
@@ -44,37 +45,36 @@

       - name: runner
         command:
         - /home/runner/run.sh
         image: ghcr.io/onedr0p/actions-runner:2.314.1@sha256:ce221cd0936c29b121fe90e985b682a6cb6428f1416b9a131cd5313ac7a3e420
         env:
         - name: DOCKER_HOST
-          value: unix:///run/docker/docker.sock
+          value: unix:///var/run/docker.sock
         - name: RUNNER_WAIT_FOR_DOCKER_IN_SECONDS
           value: '120'
         volumeMounts:
         - name: work
           mountPath: /home/runner/_work
         - name: dind-sock
-          mountPath: /run/docker
-          readOnly: true
+          mountPath: /var/run
       - name: dind
         image: docker:dind
         args:
         - dockerd
-        - --host=unix:///run/docker/docker.sock
+        - --host=unix:///var/run/docker.sock
         - --group=$(DOCKER_GROUP_GID)
         env:
         - name: DOCKER_GROUP_GID
           value: '123'
         securityContext:
           privileged: true
         volumeMounts:
         - name: work
           mountPath: /home/runner/_work
         - name: dind-sock
-          mountPath: /run/docker
+          mountPath: /var/run
         - name: dind-externals
           mountPath: /home/runner/externals
       volumes:
       - name: dind-sock
         emptyDir: {}
       - name: dind-externals
--- HelmRelease: actions-runner-system/actions-runner-controller Deployment: actions-runner-system/actions-runner-controller-gha-rs-controller

+++ HelmRelease: actions-runner-system/actions-runner-controller Deployment: actions-runner-system/actions-runner-controller-gha-rs-controller

@@ -30,13 +30,13 @@

         app.kubernetes.io/namespace: actions-runner-system
         app.kubernetes.io/instance: actions-runner-controller
     spec:
       serviceAccountName: actions-runner-controller-gha-rs-controller
       containers:
       - name: manager
-        image: ghcr.io/actions/gha-runner-scale-set-controller:0.8.3
+        image: ghcr.io/actions/gha-runner-scale-set-controller:0.9.0
         imagePullPolicy: IfNotPresent
         args:
         - --auto-scaling-runner-set-only
         - --log-level=debug
         - --log-format=text
         - --update-strategy=immediate
@@ -44,13 +44,13 @@

         - --listener-metrics-endpoint=
         - --metrics-addr=0
         command:
         - /manager
         env:
         - name: CONTROLLER_MANAGER_CONTAINER_IMAGE
-          value: ghcr.io/actions/gha-runner-scale-set-controller:0.8.3
+          value: ghcr.io/actions/gha-runner-scale-set-controller:0.9.0
         - name: CONTROLLER_MANAGER_POD_NAMESPACE
           valueFrom:
             fieldRef:
               fieldPath: metadata.namespace
         volumeMounts:
         - mountPath: /tmp

@rodent1 rodent1 merged commit e2c7696 into main Mar 27, 2024
10 checks passed
@rodent1 rodent1 deleted the renovate/main-actions-runner-controller branch March 27, 2024 15:58
@rodent1 rodent1 restored the renovate/main-actions-runner-controller branch March 27, 2024 16:47
@rodent1 rodent1 deleted the renovate/main-actions-runner-controller branch March 27, 2024 16:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kubernetes Changes made in the kubernetes directory renovate/container type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant