generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
bot
added
renovate/container
type/minor
area/kubernetes
Changes made in the kubernetes directory
cluster/main
labels
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: |
--- 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.8.3
->0.9.0
0.8.3
->0.9.0
Release Notes
actions/actions-runner-controller (gha-runner-scale-set)
v0.9.0
Changelog
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.
This PR has been generated by Renovate Bot.