이 페이지에서는 컨피그 맵을 사용해서 Redis를 설정하는 방법에 대한 실세계 예제를 제공하고, 컨피그 맵을 사용해서 컨테이너 설정하기 태스크로 빌드를 한다.
쿠버네티스 클러스터가 필요하고, kubectl 커맨드-라인 툴이 클러스터와 통신할 수 있도록 설정되어 있어야 합니다. 만약, 클러스터를 이미 가지고 있지 않다면, Minikube를 사용해서 만들거나, 다음의 쿠버네티스 플레이그라운드 중 하나를 사용할 수 있습니다:
버전 확인을 위해서, 다음 커맨드를 실행 kubectl version
.
아래의 단계를 통해서 컨피그 맵에 저장된 데이터를 사용해서 Redis 캐시를 설정할 수 있다.
첫째, redis-config
파일에서 컨피그 맵을 생성한다.
pods/config/redis-config
|
---|
maxmemory 2mb
maxmemory-policy allkeys-lru
|
curl -OL https://k8s.io/examples/pods/config/redis-config
kubectl create configmap example-redis-config --from-file=redis-config
configmap/example-redis-config created
생성된 컨피그 맵을 점검한다.
kubectl get configmap example-redis-config -o yaml
apiVersion: v1
data:
redis-config: |
maxmemory 2mb
maxmemory-policy allkeys-lru
kind: ConfigMap
metadata:
creationTimestamp: 2016-03-30T18:14:41Z
name: example-redis-config
namespace: default
resourceVersion: "24686"
selfLink: /api/v1/namespaces/default/configmaps/example-redis-config
uid: 460a2b6e-f6a3-11e5-8ae5-42010af00002
이제, 컨피그 맵에 저장된 설정 데이터를 사용하는 파드 명세를 생성한다.
pods/config/redis-pod.yaml
|
---|
|
파드를 생성한다.
kubectl create -f https://k8s.io/examples/pods/config/redis-pod.yaml
이 예제에서는 설정 볼륨이 /redis-master
에 마운트되어 있다.
redis-config
키를 redis.conf
라는 이름의 파일에 추가하기 위해 path
를 사용한다.
따라서, Redis 설정을 위한 파일 경로는 /redis-master/redis.conf
이다.
이곳이 이미지가 Redis 마스터를 위한 설정 파일을 찾는 곳이다.
설정이 올바르게 적용되었는지 확인하기 위해서, kubectl exec
를 사용해 파드 속에서 redis-cli
툴을 실행해 본다.
kubectl exec -it redis redis-cli
127.0.0.1:6379> CONFIG GET maxmemory
1) "maxmemory"
2) "2097152"
127.0.0.1:6379> CONFIG GET maxmemory-policy
1) "maxmemory-policy"
2) "allkeys-lru"
이 페이지가 도움이 되었나요?
Thanks for the feedback. If you have a specific, answerable question about how to use Kubernetes, ask it on Stack Overflow. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.