-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update redis-operator cert manager configuration. (#1220)
* fix: update redis-operator chart configuration and documentation. - Removed Chart.lock file for cert-manager dependency - Updated Chart.yaml to remove explicit cert-manager dependency - Bumped chart version to 0.19.2 - Updated README.md to clarify cert-manager installation instructions - Modified values.yaml to improve cert-manager and webhook configuration documentation - Added configuration validation helper in _helpers.tpl - Introduced NOTES.txt template for helm chart installation guidance Signed-off-by: drivebyer <[email protected]> * docs Signed-off-by: drivebyer <[email protected]> --------- Signed-off-by: drivebyer <[email protected]>
- Loading branch information
Showing
7 changed files
with
39 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ This Helm chart deploys the redis-operator into your Kubernetes cluster. The ope | |
|
||
- Helm v3+ | ||
- Kubernetes v1.16+ | ||
- If you intend to use the cert-manager, ensure that the cert-manager CRDs are installed before deploying the redis-operator. | ||
- If you plan to use cert-manager integration (certmanager.enabled=true), cert-manager must be pre-installed in your cluster | ||
|
||
## Source Code | ||
|
||
|
@@ -30,13 +30,10 @@ This Helm chart deploys the redis-operator into your Kubernetes cluster. The ope | |
helm repo add ot-helm https://ot-container-kit.github.io/helm-charts | ||
``` | ||
|
||
### 2. Install Cert-Manager CRDs (if using cert-manager) | ||
### 2. Install Cert-Manager (Optional) | ||
|
||
If you plan to use cert-manager with the redis-operator, you need to install the cert-manager CRDs before deploying the operator. | ||
|
||
```bash | ||
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.12.4/cert-manager.crds.yaml | ||
``` | ||
If you plan to use cert-manager with the redis-operator, you need to install cert-manager before deploying the operator. | ||
You can follow the [official cert-manager installation guide](https://cert-manager.io/docs/installation/). | ||
|
||
### 3. Install Redis Operator | ||
|
||
|
@@ -91,6 +88,7 @@ kubectl create secret tls <webhook-server-cert> --key tls.key --cert tls.crt -n | |
| affinity | object | `{}` | | | ||
| certificate.name | string | `"serving-cert"` | | | ||
| certificate.secretName | string | `"webhook-server-cert"` | | | ||
| certmanager.apiVersion | string | `"cert-manager.io/v1"` | | | ||
| certmanager.enabled | bool | `false` | | | ||
| issuer.email | string | `"[email protected]"` | | | ||
| issuer.name | string | `"redis-operator-issuer"` | | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{- template "redis-operator.validateConfig" . -}} | ||
|
||
Thank you for installing {{ .Chart.Name }}. | ||
|
||
Your release is named {{ .Release.Name }}. | ||
|
||
To learn more about the release, try: | ||
|
||
$ helm status {{ .Release.Name }} | ||
$ helm get all {{ .Release.Name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters