24.04.02 11:04 작성
·
719
1
일프로님 바쁜 와중에 질문드립니다.
2-1. App 생성 하기 - [+ NEW APP] 내용 입력 후 결과 값이 아래와 같이 나옵니다.~~
REPO 관련 문제 인것 같은데요. 제 설정에 문제가 있을까요 ?
Unable to create application: application spec for api is invalid: InvalidSpecError: repository not accessible: repositories not accessible: &Repository{Repo: "https://github.com/k8s-1pro/kubernetes-anotherclass-sprint2.git", Type: "", Name: "", Project: ""}: repo client error while testing repository: rpc error: code = Unknown desc = error testing repository connectivity: Get "https://github.com/k8s-1pro/kubernetes-anotherclass-sprint2.git/info/refs?service=git-upload-pack": dial tcp: lookup github.com on 10.96.0.10:53: server misbehaving
~~~
----
~~~
argocd@argo-cd-argocd-server-b7cd88d6b-n5dq6:~$ git clone https://github.com/k8s-1pro/kubernetes-anotherclass-sprint2.git
Cloning into 'kubernetes-anotherclass-sprint2'...
fatal: unable to access 'https://github.com/k8s-1pro/kubernetes-anotherclass-sprint2.git/': Could not resolve host: github.com
~~~
argocd 서버에서 git clone 시 도메인 관련 문제 발생하는 부분도 확인했습니다.
kube dns 에 설정이 필요할까요 ?
답변 3
0
2024. 04. 02. 18:32
흠..windows에서는 잘 되는데 mac에서는 잘 안되네요.
Mac의 리눅스에서는 DNS가 잘 작동하고 있으나,
쿠버네티스의 ArgoCD를 통해서는 DNS를 찾지 못하고 있습니다.
그래서 Mac 유저 분들을 위한 배포 세팅에는 아래와 같이 추가 가이드를 드려야겠네요.
argocd를 설치할 때 values-dev.yaml에 github.com 주소에 대한 ip를 명시하였습니다.
global:
hostAliases:
- ip: 20.200.245.247
hostnames:
- github.com
이렇게 하면 Argo CD Server의 Pod에서 github.com 도메인에 대해서 Pod -> CoreDNS -> 리눅스 /etc/resolve.conf 파일을 보지 않고, 바로 해당 IP주소로 보내게 되요.
카페에 argocd 설치에 대해서 Mac 용으로 내용을 업데이트 해놨습니다. 확인하시고 재설치 해보세요.
좋은 문의 감사합니다.
0
0
2024. 04. 02. 12:48
안녕하세요.
카페 글 봤었는데, 답변 드리는 걸 깜박했네요.
네, 일단 DNS 문제로 보이고요.
일단 master 서버 콘솔로 들어가서 아래 명령 날려보면 어떻게 나오나요?
ping github.com
그리고 아래 경로에 네트워크 설정 내용들이 있는데 해당 내용도 올려보시겠어요?
cd /etc/sysconfig/network-scripts/
ifcfg-ens3 ifcfg-eth0 ifcfg-eth1
cat ifcfg-ens3
cat ifcfg-eth0
cat ifcfg-eth1
2024. 04. 02. 14:48
확인에 감사드립니다.
환경은 UTM으로 구성했습니다.
ping은 정상적으로 수행되며, network-scripts에는 설정파일이 존재하지 않습니다.
추가적으로 kube-dns 로그도 전달드립니다.
resolve.conf 파일 내용도 전달드립니다.