From 0a3d2b686e72ec78d578671bf5305d1183701c7b Mon Sep 17 00:00:00 2001 From: Callum Tait <15716903+toast-gear@users.noreply.github.com> Date: Tue, 5 Oct 2021 01:01:27 +0100 Subject: [PATCH] chore: support app ids as int or strings (#869) Co-authored-by: Callum --- .../actions-runner-controller/templates/manager_secrets.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/actions-runner-controller/templates/manager_secrets.yaml b/charts/actions-runner-controller/templates/manager_secrets.yaml index 3eb481c3..50e7f291 100644 --- a/charts/actions-runner-controller/templates/manager_secrets.yaml +++ b/charts/actions-runner-controller/templates/manager_secrets.yaml @@ -9,10 +9,10 @@ metadata: type: Opaque data: {{- if .Values.authSecret.github_app_id }} - github_app_id: {{ .Values.authSecret.github_app_id | toString | b64enc }} + github_app_id: {{ .Values.authSecret.github_app_id | int | toString | b64enc }} {{- end }} {{- if .Values.authSecret.github_app_installation_id }} - github_app_installation_id: {{ .Values.authSecret.github_app_installation_id | toString | b64enc }} + github_app_installation_id: {{ .Values.authSecret.github_app_installation_id | int | toString | b64enc }} {{- end }} {{- if .Values.authSecret.github_app_private_key }} github_app_private_key: {{ .Values.authSecret.github_app_private_key | toString | b64enc }}