Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/create/kubernetes/index-kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The following links provide you with the available options to create a new Redis
</div>
<div class="col">
<RedisCard
title="Kubernetes Operator: What It Is and Why You Should Really Care About It?"
title="Kubernetes Operator: What It Is and Why You Should Really Care About It"
description="Learn about Kubernetes Operator and its benefits"
page="/create/kubernetes/kubernetes-operator"
/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: index-kubernetes-operator
title: 'Kubernetes Operator: What is It and Why You Should Really Care About It?'
sidebar_label: 'Kubernetes Operator: What is It and Why You Should Really Care About It?'
title: 'Kubernetes Operator: What It Is and Why You Should Really Care About It'
sidebar_label: 'Kubernetes Operator: What It Is and Why You Should Really Care About It'
slug: /create/kubernetes/kubernetes-operator
authors: [ajeet]
---
Expand All @@ -18,7 +18,7 @@ Kubernetes is designed for automation. Out of the box, you get lots of built-in

Think of scaling nodes up, or upgrading to a new version, or disaster recovery for your stateful application — these kinds of operations often need very specific steps, and typically require manual intervention. Kubernetes cannot know all about every stateful, complex, clustered application. Kubernetes, on its own, does not know the configuration values for, say, a Redis database cluster, with its arranged memberships and stateful, persistent storage. Additionally, scaling stateful applications in Kubernetes is not an easy task and requires manual intervention.

### Stateful Vs Stateless Applications
### Stateful vs Stateless Applications

Let’s try to understand the difference between [stateful](https://kubernetes.io/docs/tutorials/stateful-application/) versus [stateless](https://kubernetes.io/docs/tutorials/stateless-application/) applications with a simple example. Consider a Kubernetes cluster running a simple web application (without any operator). The YAML file below allows you to create two replicas of NGINX (a stateless application).

Expand Down