반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 오퍼레이터
- Kubernetes
- Continuous Deployment
- kubernetes operator
- keda
- xdp
- Argo
- Model Serving
- Litmus
- mlops
- eBPF
- opensearch
- seldon core
- serving
- argocd
- nginx ingress
- MLflow
- 카오스 엔지니어링
- knative
- opentelemetry
- gitops
- blue/green
- Kopf
- CANARY
- Pulumi
- Kubernetes 인증
- tekton
- Kubeflow
- CI/CD
- operator
Archives
- Today
- Total
Kubernetes 이야기
kubernetes coredns 에 hosts 등록하기 본문
반응형
dns 서버에 없는 임시 도메인을 테스트하고자 하는 경우 보통 linux에서 /etc/hosts 파일에 등록하여 사용한다.
Kubernetes에서는 coredns 를 사용하기 때문에 coredns에 등록하여 사용할 수 있다.
# kubectl -n kube-system edit configmap/coredns
data:
Corefile: |
.:53 {
errors
health {
lameduck 5s
}
ready
kubernetes cluster.local in-addr.arpa ip6.arpa {
pods insecure
fallthrough in-addr.arpa ip6.arpa
ttl 30
}
prometheus :9153
forward . /etc/resolv.conf {
max_concurrent 1000
}
cache 30
reload
loadbalance
hosts custom.hosts test.examples.com {
1.2.3.4 test.examples.com
fallthrough
}
}
configmap을 변경한 후 반드시 coredns pod가 재기동되어야 한다.
# kubectl rollout restart -n kube-system deployment/coredns
반응형
'Kubernetes > 일반' 카테고리의 다른 글
Nginx Ingress Path 기반 라우팅 설정 (0) | 2022.03.15 |
---|---|
로컬 Kubernetes 클러스터 - kind 설치 (0) | 2022.03.08 |
Nginx Ingress 트래픽 모니터링 결과로 Auto Scale 사용하기 (0) | 2022.02.28 |
Chaos Mesh 를 사용한 카오스 엔지니어링 (0) | 2022.02.21 |
cert-manager와 letsencrypt 연동 (0) | 2022.02.16 |
Comments