--- Title: Redis Enterprise for Kubernetes FAQs alwaysopen: false categories: - docs - operate - kubernetes description: null hideListLinks: true hidden: true linkTitle: FAQs weight: 100 url: '/operate/kubernetes/7.8.4/faqs/' --- Here are some frequently asked questions about Redis Enterprise on integration platforms. ## What is an Operator? An operator is a [Kubernetes custom controller](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources#custom-controllers) which extends the native K8s API. Refer to the article [Redis Enterprise K8s Operator-based deployments – Overview]({{< relref "/operate/kubernetes/7.8.4/architecture/" >}}). ## Does Redis Enterprise operator support multiple RECs per namespace? Redis Enterprise for Kubernetes may only deploy a single Redis Enterprise cluster (REC) per [namespace](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/). Each REC can run multiple databases while maintaining high capacity and performance. ## Do I need to deploy a Redis Enterprise operator per namespace? Yes, one operator per namespace, each managing a single Redis Enterprise cluster. Each REC can run multiple databases while maintaining high capacity and performance. ## How can I see the custom resource definitions (CRDs) created for my Redis Enterprise cluster? Run the following: ```sh kubectl get rec kubectl describe rec ``` ## How can I change the Redis Enterprise cluster admin user password? The cluster admin user password is created by the operator during the deployment of the Redis Enterprise cluster (REC) and is stored in a Kubernetes [secret](https://kubernetes.io/docs/concepts/configuration/secret/). See [Manage REC credentials]({{< relref "/operate/kubernetes/7.8.4/security/manage-rec-credentials" >}}) for instructions on changing the admin password. ## How is using Redis Enterprise operator superior to using Helm charts? While [Helm charts](https://helm.sh/docs/topics/charts/) help automate multi-resource deployments, they do not provide the lifecycle management and lack many of the benefits provided by the operator: - Operators are a K8s standard, while Helm is a proprietary tool - Using operators means better packaging for different Kubernetes deployments and distributions, as Helm is not supported in a straightforward way everywhere - Operators allow full control over the Redis Enterprise cluster lifecycle - We’ve experienced difficulties managing the state and lifecycle of the application through Helm, as it essentially only allows to determine the resources being deployed, which is a problem when upgrading and evolve the Redis Enterprise Cluster settings - Operators support advanced flows which would otherwise require using an additional third party product ## How to connect to the Redis Enterprise cluster user interface Create a [port forwarding](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#port-forward) rule to expose the cluster user interface (UI) port. For example, when the default port 8443 is used, run: ```sh kubectl port-forward –namespace service/-cluster-ui 8443:8443 ``` Connect to the UI by pointing your browser to `https://localhost:8443` ## How should I size Redis Enterprise cluster nodes? For nodes hosting the Redis Enterprise cluster [statefulSet](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/) [pods](https://kubernetes.io/docs/concepts/workloads/pods/), follow the guidelines provided for Redis Enterprise in the [hardware requirements]({{< relref "/operate/rs/installing-upgrading/install/plan-deployment/hardware-requirements.md" >}}). For additional information please also refer to [Kubernetes operator deployment – persistent volumes]({{< relref "/operate/kubernetes/7.8.4/recommendations/persistent-volumes.md" >}}). ## How to retrieve the username/password for a Redis Enterprise Cluster? The Redis Enterprise cluster stores the username/password of the UI in a K8s [secret](https://kubernetes.io/docs/concepts/configuration/secret/). Find the secret by retrieving secrets and locating one of type [Opaque](https://kubernetes.io/docs/concepts/workloads/pods/) with a name identical or containing your Redis Enterprise cluster name. For example, run: ```sh kubectl get secrets ``` A possible response may look like this: | NAME | TYPE | DATA | AGE | |------|------|------|-----| | redis-enterprise-cluster | Opaque | 2 | 5d | To retrieve the secret run: ```sh kubectl get secret redis-enterprise-cluster -o yaml ``` A possible response may look like this: ```yaml apiVersion: v1 data: password: Q2h5N1BBY28= username: cmVkaXNsYWJzLnNi kind: Secret metadata: creationTimestamp: 2018-09-03T14:06:39Z labels: app: redis-enterprise redis.io/cluster: test name: redis-enterprise-cluster namespace: redis ownerReferences: – apiVersion: app.redislabs.com/v1alpha1 blockOwnerDeletion: true controller: true kind: RedisEnterpriseCluster name: test uid: 8b247469-c715-11e8-a5d5-0a778671fc2e resourceVersion: "911969" selfLink: /api/v1/namespaces/redis/secrets/redis-enterprise-cluster uid: 8c4ff52e-c715-11e8-80f5-02cc4fca9682 type: Opaque ``` Next, decode, for example, the password field. Run: ```sh echo "Q2h5N1BBY28=" | base64 –-decode ``` ## How to retrieve the username/password for a Redis Enterprise Cluster through the OpenShift Console? To retrieve your password, navigate to the OpenShift management console, select your project name, go to Resources->Secrets->your_cluster_name Retrieve your password by selecting "Reveal Secret." {{< image filename="/images/rs/openshift-password-retrieval.png" >}} ## What capabilities, privileges and permissions are defined by the Security Context Constraint (SCC) yaml? The `scc.yaml` file is defined like this: ```yaml kind: SecurityContextConstraints apiVersion: security.openshift.io/v1 metadata: name: redis-enterprise-scc allowPrivilegedContainer: false allowedCapabilities: - SYS_RESOURCE runAsUser: type: MustRunAs uid: 1001 FSGroup: type: MustRunAs ranges: 1001,1001 seLinuxContext: type: RunAsAny ``` ([latest version on GitHub](https://github.com/RedisLabs/redis-enterprise-k8s-docs/blob/master/openshift/scc.yaml)) ([latest version on GitHub](https://github.com/RedisLabs/redis-enterprise-k8s-docs/tags)) The SYS_RESOURCE capability is required by the Redis Enterprise cluster (REC) container so that REC can set correct out of memory (OOM) scores to its processes inside the container. Also, some of the REC services must be able to increase default resource limits, especially the number of open file descriptors. {{< note >}} - Removing NET_RAW blocks 'ping' from being used on the solution containers. - These changes were made as of release 5.4.6-1183 to better align the deployment with container and Kubernetes security best practices: - The NET_RAW capability requirement in PSP was removed. - The allowPrivilegeEscalation is set to 'false' by default. {{< /note >}}