Skip to content

Commit 0887e62

Browse files
Typo in the parameter name in values file in gitops-runtime chart (#418)
1 parent e97b79e commit 0887e62

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charts/gitops-runtime/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ sealed-secrets:
258258
| gitops-operator.serviceAccount.create | bool | `true` | |
259259
| gitops-operator.serviceAccount.name | string | `"gitops-operator-controller-manager"` | |
260260
| gitops-operator.tolerations | list | `[]` | |
261-
| global.codefresh | object | `{"accountId":"","apiEventsPath":"/2.0/api/events","tls":{"caCerts":{"secret":{"annotations":{},"content":"","create":false,"key":"ca-bundle.crt"},"secretKeyRef":{}},"workflowPipelinesGitWebhooks":{"annotatins":{},"certificates":{}}},"url":"https://g.codefresh.io","userToken":{"secretKeyRef":{},"token":""}}` | Codefresh platform and account-related settings |
261+
| global.codefresh | object | `{"accountId":"","apiEventsPath":"/2.0/api/events","tls":{"caCerts":{"secret":{"annotations":{},"content":"","create":false,"key":"ca-bundle.crt"},"secretKeyRef":{}},"workflowPipelinesGitWebhooks":{"annotations":{},"certificates":{}}},"url":"https://g.codefresh.io","userToken":{"secretKeyRef":{},"token":""}}` | Codefresh platform and account-related settings |
262262
| global.codefresh.accountId | string | `""` | Codefresh Account ID. |
263263
| global.codefresh.apiEventsPath | string | `"/2.0/api/events"` | Events API endpoint URL suffix. |
264264
| global.codefresh.tls.caCerts | object | `{"secret":{"annotations":{},"content":"","create":false,"key":"ca-bundle.crt"},"secretKeyRef":{}}` | Custom CA certificates bundle for platform access with ssl |
265265
| global.codefresh.tls.caCerts.secret | object | `{"annotations":{},"content":"","create":false,"key":"ca-bundle.crt"}` | Chart managed secret for custom platform CA certificates |
266266
| global.codefresh.tls.caCerts.secret.create | bool | `false` | Whether to create the secret. |
267267
| global.codefresh.tls.caCerts.secret.key | string | `"ca-bundle.crt"` | The secret key that holds the ca bundle |
268268
| global.codefresh.tls.caCerts.secretKeyRef | object | `{}` | Reference to existing secret |
269-
| global.codefresh.tls.workflowPipelinesGitWebhooks | object | `{"annotatins":{},"certificates":{}}` | Those will be merged with the certificats defined in argo-cd.configs.tls.certificates - so if the certificates are already provided for ArgoCD, there is no need to provide them again. |
269+
| global.codefresh.tls.workflowPipelinesGitWebhooks | object | `{"annotations":{},"certificates":{}}` | Those will be merged with the certificats defined in argo-cd.configs.tls.certificates - so if the certificates are already provided for ArgoCD, there is no need to provide them again. |
270270
| global.codefresh.url | string | `"https://g.codefresh.io"` | URL of Codefresh platform. |
271271
| global.codefresh.userToken | object | `{"secretKeyRef":{},"token":""}` | User token. Used for runtime registration against the patform. One of token (for plain text value) or secretKeyRef must be provided. |
272272
| global.codefresh.userToken.secretKeyRef | object | `{}` | User token that references an existing secret containing the token. |

charts/gitops-runtime/templates/tls-custom-ca/workflow-pipelines-git-webhooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: codefresh-workflow-pipelines-tls
55
labels:
66
{{- include "codefresh-gitops-runtime.labels" . | nindent 4 }}
7-
{{- with .Values.global.codefresh.tls.workflowPipelinesGitWebhooks.annotatins }}
7+
{{- with .Values.global.codefresh.tls.workflowPipelinesGitWebhooks.annotations }}
88
annotations: {{ . | toYaml | nindent 4 }}
99
{{- end }}
1010
type: Opaque

charts/gitops-runtime/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ global:
3737
# -- Those will be merged with the certificats defined in argo-cd.configs.tls.certificates - so if the certificates are already provided for ArgoCD, there is no need to provide them again.
3838
workflowPipelinesGitWebhooks:
3939
# Annotations on the secret resource
40-
annotatins: {}
40+
annotations: {}
4141
certificates: {}
4242
# server.example.com: |
4343
# -----BEGIN CERTIFICATE-----

0 commit comments

Comments
 (0)