mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-11 12:06:57 +00:00
* feat: Added option for secret annotation * bump the chart version * chore: aligning values attributes with standard * fixed template for manager_secrets * docs: update annotations and fix layout Co-authored-by: Maxim Tacu <maxim.tacu@mercedes-benz.io> Co-authored-by: Callum Tait <15716903+toast-gear@users.noreply.github.com>
14 lines
424 B
YAML
14 lines
424 B
YAML
# This template only exists to facilitate CI testing of the chart, since
|
|
# a secret is expected to be found in the namespace by the controller manager
|
|
{{ if .Values.createDummySecret -}}
|
|
apiVersion: v1
|
|
data:
|
|
github_token: dGVzdA==
|
|
kind: Secret
|
|
metadata:
|
|
name: controller-manager
|
|
{{- if .Values.authSecret.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.authSecret.annotations | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }} |