From 8f9b93448f390c2571aaae9aa501b62e6f502255 Mon Sep 17 00:00:00 2001 From: tryan225 Date: Tue, 19 Mar 2019 14:31:11 -0700 Subject: [PATCH] Adding an example of extraVolumes with the Helm chart --- website/source/docs/platform/k8s/helm.html.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/website/source/docs/platform/k8s/helm.html.md b/website/source/docs/platform/k8s/helm.html.md index 87749626db..914f6557f7 100644 --- a/website/source/docs/platform/k8s/helm.html.md +++ b/website/source/docs/platform/k8s/helm.html.md @@ -156,6 +156,13 @@ and consider if they're appropriate for your deployment. configuration files from this volume with `-config-dir`. This defaults to false. + ```yaml + extraVolumes: + - type: "secret" + name: "consul-certs" + load: false + ``` + * `affinity` (`string`) - This value defines the [affinity](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity) for server pods. It defaults to allowing only a single pod on each node, which minimizes risk of the cluster becoming unusable if a node is lost. If you need to run more pods per node (for example, testing on Minikube), set this value to `null`. ```yaml @@ -231,6 +238,13 @@ and consider if they're appropriate for your deployment. configuration files from this volume with `-config-dir`. This defaults to false. + ```yaml + extraVolumes: + - type: "secret" + name: "consul-certs" + load: false + ``` + * `priorityClassName` (`string`) - This value references an existing Kubernetes [priorityClassName](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#pod-priority) that can be assigned to client pods. * `annotations` (`string`) - This value defines additional annotations for client pods. This should be a formatted as a multi-line string.