安装 Redis Enterprise Helm 图表
使用 Helm 图表安装 Redis Enterprise for Kubernetes 版本 7.8.6。
适用于 Kubernetes 的 Redis Enterprise |
---|
Helm 图表提供了一种简单的方法,只需几个步骤即可安装 Redis Enterprise for Kubernetes Operator。有关 Helm 的更多信息,请转到 https://helm.sh/docs/。
先决条件
- 支持的 Kubernetes 发行版。
- 至少 3 个 worker 节点。
- Kubernetes 客户端 (kubectl)。
- Helm 3.10 或更高版本。
示例值
以下步骤使用以下占位符来指示您必须提供的命令行参数:
<repo-name>
是保存 Helm Chart 的存储库的名称(例如:redis
).<release-name>
是您为 Helm Chart 的特定安装指定的名称(例如:my-redis-enterprise-operator
)<chart-version>
是要安装的 Helm Chart 的版本(例如:7.8.2-2
)<namespace-name>
是 Redis 运算符将在其中运行的新命名空间的名称(例如:ns1
)<path-to-chart>
是 Helm Chart 的文件路径,如果它存储在本地目录中(例如:/home/charts/redis-enterprise-operator
)
安装
- 添加 Redis 存储库。
helm repo add <repo-name> https://helm.redis.io/
- Install the Helm chart into a new namespace.
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
To install with Openshift, add --set openshift.mode=true
.
To monitor the installation add the --debug
flag. The installation runs several jobs synchronously and may take a few minutes to complete.
Install from local directory
-
Find the latest release on the redis-enterprise-k8s-docs repo and download the tar.gz
source code into a local directory.
-
Install the Helm chart from your local directory.
helm install <release-name> <path-to-chart> \
--namespace <namespace-name> \
--create-namespace
To install with Openshift, add --set openshift.mode=true
.
To monitor the installation add the --debug
flag. The installation runs several jobs synchronously and may take a few minutes to complete.
Specify values during install
-
View configurable values with helm show values <repo-name>/<chart-name>
.
-
Install the Helm chart, overriding specific value defaults using --set
.
helm install <operator-name> redis/redis-enterprise-operator \
--version <release-name> \
--namespace <namespace-name> \
--create-namespace
--set <key1>=<value1> \
--set <key2>=<value2>
Install with values file
-
View configurable values with helm show values <repo-name>/<chart-name>
.
-
Create a YAML file to specify the values you want to configure.
-
Install the chart with the --values
option.
helm install <operator-name> redis/redis-enterprise-operator \
--version <release-name> \
--namespace <namespace-name> \
--create-namespace \
--values <path-to-values-file>
Uninstall
-
Delete any custom resources managed by the operator. See Delete custom resources for detailed steps. You must delete custom resources in the correct order to avoid errors.
-
Uninstall the Helm chart.
helm uninstall <release-name>
This removes all Kubernetes resources associated with the chart and deletes the release.
Note:
Custom Resource Definitions (CRDs) installed by the chart are not removed during chart uninstallation. To remove them manually after uninstalling the chart, run kubectl delete crds -l app=redis-enterprise
.
Known limitations
- Only new installations of the Redis operator are supported at this time. The steps for creating the RedisEnterpriseCluster (REC) and other custom resources remain the same.
- Upgrades and migrations are not supported.
- The chart doesn't include configuration options for multiple namespaces, rack-awareness, and Vault integration. The steps for configuring these options remain the same.
- The chart has had limited testing in advanced setups, including Active-Active configurations, air-gapped deployments, and IPv6/dual-stack environments.
On this page