Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ redis-config:
Use `kubectl exec` to enter the pod and run the `redis-cli` tool to check the current configuration:

```shell
kubectl exec -it redis -- redis-cli
kubectl exec -it pod/redis -- redis-cli
```

Check `maxmemory`:
Expand Down Expand Up @@ -173,7 +173,7 @@ maxmemory-policy allkeys-lru
Check the Redis Pod again using `redis-cli` via `kubectl exec` to see if the configuration was applied:

```shell
kubectl exec -it redis -- redis-cli
kubectl exec -it pod/redis -- redis-cli
```

Check `maxmemory`:
Expand Down Expand Up @@ -213,7 +213,7 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/main/conte
Now re-check the configuration values one last time:

```shell
kubectl exec -it redis -- redis-cli
kubectl exec -it pod/redis -- redis-cli
```

Check `maxmemory`:
Expand Down