使用 ConfigMap 配置 Redis

此页面提供了一个真实世界的示例,说明如何使用 ConfigMap 配置 Redis,并基于配置 Pod 以使用 ConfigMap任务构建。

目标

  • 创建一个包含 Redis 配置值的 ConfigMap
  • 创建一个挂载并使用创建的 ConfigMap 的 Redis Pod
  • 验证配置是否正确应用。

开始之前

您需要一个 Kubernetes 集群,并且必须配置 kubectl 命令行工具以与您的集群通信。建议在至少有两个不充当控制平面主机的节点的集群上运行本教程。如果您还没有集群,可以使用minikube创建一个集群,或者可以使用这些 Kubernetes 游乐场之一

要检查版本,请输入kubectl version

真实世界示例:使用 ConfigMap 配置 Redis

按照以下步骤使用存储在 ConfigMap 中的数据配置 Redis 缓存。

首先创建一个带有空配置块的 ConfigMap

cat <<EOF >./example-redis-config.yaml
apiVersion: v1
kind: ConfigMap
metadata:
  name: example-redis-config
data:
  redis-config: ""
EOF

应用上面创建的 ConfigMap,以及 Redis Pod 清单

kubectl apply -f example-redis-config.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/main/content/en/examples/pods/config/redis-pod.yaml

检查 Redis Pod 清单的内容,并注意以下几点

  • 一个名为config的卷由spec.volumes[1]创建
  • spec.volumes[1].configMap.items[0]下的keypath将来自example-redis-config ConfigMap 的redis-config键作为config卷上的名为redis.conf的文件公开。
  • 然后,config卷通过spec.containers[0].volumeMounts[1]挂载在/redis-master上。

这具有从上面的example-redis-config ConfigMap 中将data.redis-config中的数据公开为 Pod 内的/redis-master/redis.conf的净效果。

apiVersion: v1
kind: Pod
metadata:
  name: redis
spec:
  containers:
  - name: redis
    image: redis:5.0.4
    command:
      - redis-server
      - "/redis-master/redis.conf"
    env:
    - name: MASTER
      value: "true"
    ports:
    - containerPort: 6379
    resources:
      limits:
        cpu: "0.1"
    volumeMounts:
    - mountPath: /redis-master-data
      name: data
    - mountPath: /redis-master
      name: config
  volumes:
    - name: data
      emptyDir: {}
    - name: config
      configMap:
        name: example-redis-config
        items:
        - key: redis-config
          path: redis.conf

检查创建的对象

kubectl get pod/redis configmap/example-redis-config 

您应该看到以下输出

NAME        READY   STATUS    RESTARTS   AGE
pod/redis   1/1     Running   0          8s

NAME                             DATA   AGE
configmap/example-redis-config   1      14s

回想一下,我们将example-redis-config ConfigMap 中的redis-config键留空

kubectl describe configmap/example-redis-config

您应该看到一个空的redis-config

Name:         example-redis-config
Namespace:    default
Labels:       <none>
Annotations:  <none>

Data
====
redis-config:

使用kubectl exec进入 Pod 并运行redis-cli工具来检查当前配置

kubectl exec -it redis -- redis-cli

检查maxmemory

127.0.0.1:6379> CONFIG GET maxmemory

它应该显示默认值 0

1) "maxmemory"
2) "0"

类似地,检查maxmemory-policy

127.0.0.1:6379> CONFIG GET maxmemory-policy

这也应该产生其默认值noeviction

1) "maxmemory-policy"
2) "noeviction"

现在让我们向example-redis-config ConfigMap 添加一些配置值

apiVersion: v1
kind: ConfigMap
metadata:
  name: example-redis-config
data:
  redis-config: |
    maxmemory 2mb
    maxmemory-policy allkeys-lru    

应用更新的 ConfigMap

kubectl apply -f example-redis-config.yaml

确认 ConfigMap 已更新

kubectl describe configmap/example-redis-config

您应该看到我们刚刚添加的配置值

Name:         example-redis-config
Namespace:    default
Labels:       <none>
Annotations:  <none>

Data
====
redis-config:
----
maxmemory 2mb
maxmemory-policy allkeys-lru

使用kubectl exec再次通过redis-cli检查 Redis Pod,查看是否已应用配置

kubectl exec -it redis -- redis-cli

检查maxmemory

127.0.0.1:6379> CONFIG GET maxmemory

它仍然保持默认值 0

1) "maxmemory"
2) "0"

类似地,maxmemory-policy仍然保持在noeviction默认设置

127.0.0.1:6379> CONFIG GET maxmemory-policy

返回

1) "maxmemory-policy"
2) "noeviction"

配置值没有更改,因为需要重新启动 Pod 才能从关联的 ConfigMap 中获取更新的值。让我们删除并重新创建 Pod

kubectl delete pod redis
kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/main/content/en/examples/pods/config/redis-pod.yaml

现在最后一次重新检查配置值

kubectl exec -it redis -- redis-cli

检查maxmemory

127.0.0.1:6379> CONFIG GET maxmemory

现在应该返回更新后的值 2097152

1) "maxmemory"
2) "2097152"

类似地,maxmemory-policy也已更新

127.0.0.1:6379> CONFIG GET maxmemory-policy

现在它反映了期望的值allkeys-lru

1) "maxmemory-policy"
2) "allkeys-lru"

通过删除创建的资源来清理您的工作

kubectl delete pod/redis configmap/example-redis-config

下一步

上次修改时间:2023 年 12 月 27 日下午 3:37 PST:通过 Configmap 更新配置 (3efc5cde2f)