Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 88823aa

Browse files
jmlrtcclauss
andauthored
Fix typos discovered by codespell (#1319) (#1397)
Co-authored-by: Christian Clauss <[email protected]>
1 parent e6b99fb commit 88823aa

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

elasticsearch/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ imagePullSecrets: []
235235
nodeSelector: {}
236236
tolerations: []
237237

238-
# Enabling this will publically expose your Elasticsearch instance.
238+
# Enabling this will publicly expose your Elasticsearch instance.
239239
# Only enable this if you have security enabled on your cluster
240240
ingress:
241241
enabled: false

kibana/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ as a reference. They are also used in the automated testing of this chart.
8686
| `extraContainers` | Templatable string of additional containers to be passed to the `tpl` function | `""` |
8787
| `extraEnvs` | Extra [environment variables][] which will be appended to the `env:` definition for the container | see [values.yaml][] |
8888
| `extraInitContainers` | Templatable string of additional containers to be passed to the `tpl` function | `""` |
89-
| `extraVolumeMounts` | Configuration for additionnal `volumeMounts` | see [values.yaml][] |
90-
| `extraVolumes` | Configuration for additionnal `volumes` | see [values.yaml][] |
89+
| `extraVolumeMounts` | Configuration for additional `volumeMounts` | see [values.yaml][] |
90+
| `extraVolumes` | Configuration for additional `volumes` | see [values.yaml][] |
9191
| `fullnameOverride` | Overrides the full name of the resources. If not set the name will default to " `.Release.Name` - `.Values.nameOverride orChart.Name` " | `""` |
9292
| `healthCheckPath` | The path used for the readinessProbe to check that Kibana is ready. If you are setting `server.basePath` you will also need to update this to `/${basePath}/app/kibana` | `/app/kibana` |
9393
| `hostAliases` | Configurable [hostAliases][] | `[]` |
9494
| `httpPort` | The http port that Kubernetes will use for the healthchecks and the service | `5601` |
9595
| `imagePullPolicy` | The Kubernetes [imagePullPolicy][]value | `IfNotPresent` |
9696
| `imagePullSecrets` | Configuration for [imagePullSecrets][] so that you can use a private registry for your image | `[]` |
97-
| `imageTag` | The Kibana Docker image tag | `7.15.0` |
97+
| `imageTag` | The Kibana Docker image tag | `7.15.0` |
9898
| `image` | The Kibana Docker image | `docker.elastic.co/kibana/kibana` |
9999
| `ingress` | Configurable [ingress][] to expose the Kibana service. | see [values.yaml][] |
100100
| `kibanaConfig` | Allows you to add any config files in `/usr/share/kibana/config/` such as `kibana.yml` See [values.yaml][] for an example of the formatting | `{}` |

logstash/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ modified in place while using ConfigMap bind-mount the same file (more details
9595
in this [note][]).
9696
* When overriding `logstash.yml`, `http.host: 0.0.0.0` should always be included
9797
to make default probes work. If restricting HTTP API to 127.0.0.1 is required by
98-
using `http.host: 127.0.0.1`, default probes should be disabled or overrided
98+
using `http.host: 127.0.0.1`, default probes should be disabled or overridden
9999
(see [values.yaml][] for the good syntax).
100100
* An ingress is provided that can be used to expose the HTTP port. This can be
101101
useful for the [http input plugin][], for instance.
@@ -119,7 +119,7 @@ useful for the [http input plugin][], for instance.
119119
| `httpPort` | The http port that Kubernetes will use for the healthchecks and the service | `9600` |
120120
| `imagePullPolicy` | The Kubernetes [imagePullPolicy][] value | `IfNotPresent` |
121121
| `imagePullSecrets` | Configuration for [imagePullSecrets][] so that you can use a private registry for your image | `[]` |
122-
| `imageTag` | The Logstash Docker image tag | `7.15.0` |
122+
| `imageTag` | The Logstash Docker image tag | `7.15.0` |
123123
| `image` | The Logstash Docker image | `docker.elastic.co/logstash/logstash` |
124124
| `labels` | Configurable [labels][] applied to all Logstash pods | `{}` |
125125
| `ingress` | Configurable [ingress][] for external access to Logstash HTTP port. | see [values.yaml][] |
@@ -128,7 +128,7 @@ useful for the [http input plugin][], for instance.
128128
| `logstashConfig` | Allows you to add any config files in `/usr/share/logstash/config/` such as `logstash.yml` and `log4j2.properties` See [values.yaml][] for an example of the formatting | `{}` |
129129
| `logstashJavaOpts` | Java options for Logstash. This is where you should configure the JVM heap size | `-Xmx1g -Xms1g` |
130130
| `logstashPipeline` | Allows you to add any pipeline files in `/usr/share/logstash/pipeline/` | `{}` |
131-
| `logstashPatternDir` | Allows you to define a custom directory to store patten files | `/usr/share/logstash/patterns/` |
131+
| `logstashPatternDir` | Allows you to define a custom directory to store pattern files | `/usr/share/logstash/patterns/` |
132132
| `logstashPattern` | Allows you to add any pattern files in `logstashPatternDir` | `{}` |
133133
| `maxUnavailable` | The [maxUnavailable][] value for the pod disruption budget. By default this will prevent Kubernetes from having more than 1 unhealthy pod in the node group | `1` |
134134
| `nameOverride` | Overrides the chart name for resources. If not set the name will default to `.Chart.Name` | `""` |

logstash/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ terminationGracePeriod: 120
207207

208208
# Probes
209209
# Default probes are using `httpGet` which requires that `http.host: 0.0.0.0` is part of
210-
# `logstash.yml`. If needed probes can be disabled or overrided using the following syntaxes:
210+
# `logstash.yml`. If needed probes can be disabled or overridden using the following syntaxes:
211211
#
212212
# disable livenessProbe
213213
# livenessProbe: null

0 commit comments

Comments
 (0)