From 20394be04da144f942a6aed1995cd0ad8a73b0b6 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Tue, 29 Jun 2021 08:53:39 +0900 Subject: [PATCH] Fix image repo name in chart (#663) * Fix image repo name in chart Ref https://github.com/actions-runner-controller/actions-runner-controller/issues/644#issuecomment-869200869 --- charts/actions-runner-controller/README.md | 2 +- charts/actions-runner-controller/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/actions-runner-controller/README.md b/charts/actions-runner-controller/README.md index f5362365..a1cc5250 100644 --- a/charts/actions-runner-controller/README.md +++ b/charts/actions-runner-controller/README.md @@ -22,7 +22,7 @@ _Default values are the defaults set in the charts values.yaml, some properties | `authSecret.github_app_installation_id` | The ID of your GitHub App installation. **This can't be set at the same time as `authSecret.github_token`** | | | `authSecret.github_app_private_key` | The multiline string of your GitHub App's private key. **This can't be set at the same time as `authSecret.github_token`** | | | `authSecret.github_token` | Your chosen GitHub PAT token. **This can't be set at the same time as the `authSecret.github_app_*`** | | -| `image.repository` | The "repository/image" of the controller container | actions-runner-controller/actions-runner-controller | +| `image.repository` | The "repository/image" of the controller container | summerwind/actions-runner-controller | | `image.tag` | The tag of the controller container | | | `image.dindSidecarRepositoryAndTag` | The "repository/image" of the dind sidecar container | docker:dind | | `image.pullPolicy` | The pull policy of the controller image | IfNotPresent | diff --git a/charts/actions-runner-controller/values.yaml b/charts/actions-runner-controller/values.yaml index 318c291e..026036b7 100644 --- a/charts/actions-runner-controller/values.yaml +++ b/charts/actions-runner-controller/values.yaml @@ -29,7 +29,7 @@ authSecret: #github_token: "" image: - repository: actions-runner-controller/actions-runner-controller + repository: summerwind/actions-runner-controller dindSidecarRepositoryAndTag: "docker:dind" pullPolicy: IfNotPresent