From 4553fb52deedf675c91d67cf84d2597b3a3958e3 Mon Sep 17 00:00:00 2001 From: Martijn Koster Date: Mon, 21 Oct 2019 15:39:50 +0100 Subject: [PATCH] [incubator/solr] Fix language typos in the README (#17830) * Fix language typos in the solr README Signed-off-by: Martijn Koster * Update README.md Remove prompt dollar sign for consistency with the other commands in the text block, and others on the page Signed-off-by: Martijn Koster * bump minor version 1.3.0 to 1.3.1 Signed-off-by: Martijn Koster * Add missing code block in README Signed-off-by: Martijn Koster --- incubator/solr/Chart.yaml | 2 +- incubator/solr/README.md | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/incubator/solr/Chart.yaml b/incubator/solr/Chart.yaml index f17136887a..340363971a 100644 --- a/incubator/solr/Chart.yaml +++ b/incubator/solr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: "v1" name: "solr" -version: "1.3.0" +version: "1.3.1" appVersion: "7.7.2" description: "A helm chart to install Apache Solr: http://lucene.apache.org/solr/" keywords: diff --git a/incubator/solr/README.md b/incubator/solr/README.md index 5a1174940a..20ad0bb66d 100644 --- a/incubator/solr/README.md +++ b/incubator/solr/README.md @@ -1,6 +1,6 @@ # Solr Helm Chart -This helm chart installs a Solr cluster and it's required Zookeeper cluster into a running +This helm chart installs a Solr cluster and its required Zookeeper cluster into a running kubernetes cluster. The chart installs the Solr docker image from: https://hub.docker.com/_/solr/ @@ -16,7 +16,7 @@ To install the Solr helm chart run: ```txt helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator -$ helm install --name solr incubator/solr +helm install --name solr incubator/solr ``` ## Configuration Options @@ -34,9 +34,9 @@ The following table shows the configuration options for the Solr helm chart: | `image.repository` | The repository to pull the docker image from| `solr` | | `image.tag` | The tag on the repository to pull | `7.7.2` | | `image.pullPolicy` | Solr pod pullPolicy | `IfNotPresent` | -| `livenessProbe.initialDelaySeconds` | Inital Delay for Solr pod liveness probe | `20` | +| `livenessProbe.initialDelaySeconds` | Initial Delay for Solr pod liveness probe | `20` | | `livenessProbe.periodSeconds` | Poll rate for liveness probe | `10` | -| `readinessProbe.initialDelaySeconds` | Inital Delay for Solr pod readiness probe | `15` | +| `readinessProbe.initialDelaySeconds` | Initial Delay for Solr pod readiness probe | `15` | | `readinessProbe.periodSeconds` | Poll rate for readiness probe | `5` | | `podAnnotations` | Annotations to be applied to the solr pods | `{}` | | `affinity` | Affinity policy to be applied to the Solr pods | `{}` | @@ -67,18 +67,19 @@ The following table shows the configuration options for the Solr helm chart: | `exporter.resources` | Resource limits to set on the exporter pods | `{}` | | `exporter.port` | The port that the exporter runs on | `9983` | | `exporter.threads` | The number of query threads that the exporter runs | `7` | -| `exporter.livenessProbe.initialDelaySeconds` | Inital Delay for the exporter pod liveness| `20` | +| `exporter.livenessProbe.initialDelaySeconds` | Initial Delay for the exporter pod liveness| `20` | | `exporter.livenessProbe.periodSeconds` | Poll rate for liveness probe | `10` | -| `exporter.readinessProbe.initialDelaySeconds` | Inital Delay for the exporter pod readiness | `15` | +| `exporter.readinessProbe.initialDelaySeconds` | Initial Delay for the exporter pod readiness | `15` | | `exporter.readinessProbe.periodSeconds` | Poll rate for readiness probe | `5` | | `exporter.service.type` | The type of the exporter service | `ClusterIP` | | `exporter.service.annotations` | Annotations to apply to the exporter service | `{}` | ## Service Start with command sets +```sh helm install --name solr \ --set image.tag=7.7.2,javaMem="-Xms1g -Xmx1g",logLevel=INFO,replicaCount=2,livenessProbe.initialDelaySeconds=420,exporter.readinessProbe.periodSeconds=30 incubator/solr - +``` ## TLS Configuration