Skip to content

Commit

Permalink
Add a minimal README.md for the helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
calind committed Oct 25, 2021
1 parent 6b78c9d commit 845f7b3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions deploy/charts/wordpress-operator/README.md
Original file line number Diff line number Diff line change
@@ -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` |

0 comments on commit 845f7b3

Please sign in to comment.