Skip to content

Commit 1d24d3b

Browse files
rentziassLink-
andauthored
Prepare 0.3.0 release (#2388)
Co-authored-by: Bassem Dghaidi <[email protected]>
1 parent 9994d3a commit 1d24d3b

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

charts/gha-runner-scale-set-controller/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.0
18+
version: 0.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.2.0"
24+
appVersion: "0.3.0"
2525

2626
home: https://github.com/actions/actions-runner-controller
2727

@@ -30,4 +30,4 @@ sources:
3030

3131
maintainers:
3232
- name: actions
33-
url: https://github.com/actions
33+
url: https://github.com/actions

charts/gha-runner-scale-set/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.0
18+
version: 0.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.2.0"
24+
appVersion: "0.3.0"
2525

2626
home: https://github.com/actions/dev-arc
2727

@@ -30,4 +30,4 @@ sources:
3030

3131
maintainers:
3232
- name: actions
33-
url: https://github.com/actions
33+
url: https://github.com/actions

docs/preview/gha-runner-scale-set-controller/README.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ https://user-images.githubusercontent.com/568794/212668313-8946ddc5-60c1-461f-a7
3838
--namespace "${NAMESPACE}" \
3939
--create-namespace \
4040
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set-controller \
41-
--version 0.2.0
41+
--version 0.3.0
4242
```
4343

4444
1. Generate a Personal Access Token (PAT) or create and install a GitHub App. See [Creating a personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) and [Creating a GitHub App](https://docs.github.com/en/developers/apps/creating-a-github-app).
@@ -59,7 +59,7 @@ https://user-images.githubusercontent.com/568794/212668313-8946ddc5-60c1-461f-a7
5959
--create-namespace \
6060
--set githubConfigUrl="${GITHUB_CONFIG_URL}" \
6161
--set githubConfigSecret.github_token="${GITHUB_PAT}" \
62-
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --version 0.2.0
62+
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --version 0.3.0
6363
```
6464

6565
```bash
@@ -77,7 +77,7 @@ https://user-images.githubusercontent.com/568794/212668313-8946ddc5-60c1-461f-a7
7777
--set githubConfigSecret.github_app_id="${GITHUB_APP_ID}" \
7878
--set githubConfigSecret.github_app_installation_id="${GITHUB_APP_INSTALLATION_ID}" \
7979
--set githubConfigSecret.github_app_private_key="${GITHUB_APP_PRIVATE_KEY}" \
80-
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --version 0.2.0
80+
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --version 0.3.0
8181
```
8282

8383
1. Check your installation. If everything went well, you should see the following:
@@ -86,8 +86,8 @@ https://user-images.githubusercontent.com/568794/212668313-8946ddc5-60c1-461f-a7
8686
$ helm list -n "${NAMESPACE}"
8787
8888
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
89-
arc arc-systems 1 2023-01-18 10:03:36.610534934 +0000 UTC deployed gha-runner-scale-set-controller-0.2.0 preview
90-
arc-runner-set arc-systems 1 2023-01-18 10:20:14.795285645 +0000 UTC deployed gha-runner-scale-set-0.2.0 0.2.0
89+
arc arc-systems 1 2023-01-18 10:03:36.610534934 +0000 UTC deployed gha-runner-scale-set-controller-0.3.0 preview
90+
arc-runner-set arc-systems 1 2023-01-18 10:20:14.795285645 +0000 UTC deployed gha-runner-scale-set-0.3.0 0.3.0
9191
```
9292

9393
```bash
@@ -158,6 +158,18 @@ Verify that the secret you provided is correct and that the `githubConfigUrl` yo
158158

159159
## Changelog
160160

161+
### v0.3.0
162+
163+
#### Major changes
164+
165+
1. Runner pods are more similar to hosted runners [#2348](https://github.com/actions/actions-runner-controller/pull/2348)
166+
1. Add support for self-signed CA certificates [#2268](https://github.com/actions/actions-runner-controller/pull/2268)
167+
1. Fixed trailing slashes in config URLs breaking installations [#2381](https://github.com/actions/actions-runner-controller/pull/2381)
168+
1. Fixed a bug where the listener pod would ignore proxy settings from env [#2366](https://github.com/actions/actions-runner-controller/pull/2366)
169+
1. Added runner set name field making it optionally configurable [#2279](https://github.com/actions/actions-runner-controller/pull/2279)
170+
1. Name and namespace labels of listener pod have been split [#2341](https://github.com/actions/actions-runner-controller/pull/2341)
171+
1. Added chart name constraints validation on AutoscalingRunnerSet install [#2347](https://github.com/actions/actions-runner-controller/pull/2347)
172+
161173
### v0.2.0
162174

163175
#### Major changes

0 commit comments

Comments
 (0)