From 845f7b3f0721cba2ca248ae02ecc2f2291f4ce05 Mon Sep 17 00:00:00 2001 From: Calin Don Date: Mon, 25 Oct 2021 14:13:38 +0300 Subject: [PATCH] Add a minimal README.md for the helm chart --- deploy/charts/wordpress-operator/README.md | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 deploy/charts/wordpress-operator/README.md diff --git a/deploy/charts/wordpress-operator/README.md b/deploy/charts/wordpress-operator/README.md new file mode 100644 index 00000000..32e6c122 --- /dev/null +++ b/deploy/charts/wordpress-operator/README.md @@ -0,0 +1,27 @@ +# Bitpoke WordPress Operator + +This is the helm chart for [wordpress-operator](https://github.com/bitpoke/wordpress-operator). + +## TL;DR +```sh +helm repo add bitpoke https://helm-charts.bitpoke.io +helm install wordpress-operator bitpoke/wordpress-operator +``` + +## Configuration +The following table contains the configuration parameters for wordpress-operator and default values. + +| Parameter | Description | Default value | +| --- | --- | --- | +| `replicas` | Replicas for controller | `1` | +| `image` | Controller container image | `docker.io/bitpoke/wordpress-operator:latest` | +| `imagePullPolicy` | Controller image pull policy | `IfNotPresent` | +| `imagePullSecrets` | Controller image pull secret | | +| `installCRDs` | Whether or not to install CRDS, Regardless of value of this, Helm v3+ will install the CRDs if those are not present already. Use `--skip-crds` with `helm install` if you want to skip CRD creation | `true` | +| `resources` | Controller container resources limits and requests | `{}` | +| `nodeSelector` | Controller pod nodeSelector | `{}` | +| `tolerations` | Controller pod tolerations | `{}` | +| `affinity` | Controller pod node affinity | `{}` | +| `extraArgs` | Args that are passed to controller, check controller command line flags | `[]` | +| `extraEnv` | Extra environment vars that are passed to controller, check controller command line flags | `{}` | +| `rbac.create` | Whether or not to create rbac service account, role and roleBinding | `true` |