Skip to content

Commit 95c3f66

Browse files
committed
fix typo in ntlmCreds
1 parent a58fc58 commit 95c3f66

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

charts/github-actions-runner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Helm chart for Kubernetes
44

55
type: application
66

7-
version: 0.7.2
7+
version: 0.7.3
88
appVersion: 0.13.0
99

1010
kubeVersion: ">=1.19.0"

charts/github-actions-runner/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github-actions-runner
22

3-
![Version: 0.7.2](https://img.shields.io/badge/Version-0.7.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.0](https://img.shields.io/badge/AppVersion-0.13.0-informational?style=flat-square)
3+
![Version: 0.7.3](https://img.shields.io/badge/Version-0.7.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.0](https://img.shields.io/badge/AppVersion-0.13.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

@@ -102,7 +102,7 @@ helm install github-actions-runner fs-devops/github-actions-runner -f values.yam
102102
| runner.kaniko.mountedSecret | string | `""` | |
103103
| runner.labels | string | `""` | |
104104
| runner.proxy.enabled | bool | `false` | |
105-
| runner.proxy.ntmlCreds | string | `""` | |
105+
| runner.proxy.ntlmCreds | string | `""` | |
106106
| runner.proxy.pacUrl | string | `""` | |
107107
| securityContext.readOnlyRootFilesystem | bool | `false` | |
108108
| securityContext.runAsNonRoot | bool | `true` | |

charts/github-actions-runner/templates/secrets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ data:
99
GH_ACCESS_TOKEN: {{ .Values.runner.github.accessToken | b64enc | squote }}
1010
{{- if .Values.runner.proxy.enabled }}
1111
PROXY_PAC: {{ .Values.runner.proxy.pacUrl | b64enc | squote }}
12-
PROXY_NTLM_CREDENTIALS: {{ .Values.runner.proxy.ntmlCreds | b64enc | squote }}
12+
PROXY_NTLM_CREDENTIALS: {{ .Values.runner.proxy.ntlmCreds | b64enc | squote }}
1313
{{- end }}

charts/github-actions-runner/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runner:
3939
proxy:
4040
enabled: false
4141
pacUrl: ""
42-
ntmlCreds: ""
42+
ntlmCreds: ""
4343
# custom certs will be used in the runner and kaniko, as well in java (if you using it)
4444
customCerts:
4545
# Paste your custom ca-certificates.crt:

0 commit comments

Comments
 (0)