일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- cloud-init
- port open
- Linux
- Docker
- golang
- kolla
- ubuntu
- nfs-provisioner
- KVM
- kolla-ansible
- k8s
- cephadm
- terraform
- i3
- OpenStack
- grafana-loki
- awx
- HTML
- archlinux
- ceph-ansible
- Arch
- Octavia
- Kubernetes
- libvirt
- yum
- Kubeflow
- ceph
- pacman
- repository
- Ansible
- Today
- Total
목록분류 전체보기 (189)
YJWANG
인증서 생성 openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout test.key -out test.crt private key 암호 설정이 필요한 경우 openssl req -x509 -days 365 -newkey rsa:2048 -keyout test.key -out test.crt
refer to https://kubernetes.github.io/ingress-nginx/user-guide/tls/ https://github.com/kubernetes/ingress-nginx/issues/2173 https://kubernetes.github.io/ingress-nginx/examples/multi-tls/ 사전 환경 아래와 같이 https를 수신하는 두 서비스가 있다. 이를 Ingress tls로 분기할 예정이다. [root@wyj05_deploy_0 ingress]# kubectl get svc -n https NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE https-test1 NodePort 10.233.44.245 8443:30004/TC..
Docker http Dockerfile FROM httpd COPY test1_index /usr/local/apache2/htdocs/index.htmlIndex page # cat test1_index test1 index pageDocker https Local 인증서 생성 # openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pemDockerfile FROM ilkka/httpd # These are self-generated certs not meant for any real use! COPY cert.pem /usr/local/apache2/conf/server.crt COPY key.pem ..
ingress 구축이 처음이라면 아래 글 부터 따라하시고 오시는 것을 추천드립니다. 제 글입니다..ㅎ https://yjwang.tistory.com/37 위 페이지의 구성이 돼있다는 전제 하에 진행할 예정입니다. 이번에는 ingress 자체를 분기하기 위해 nodeport가 아닌 Direct로 80 /443에 접근하기 위해 metallb를 사용해볼 예정입니다. 기존 구성대로 할 시 nodeport를 통하지 않고서는 통신되지 않습니다. 이는 controller 서비스가 독립된 network 내에 있어 접근이 불가능 하기 때문입니다. 자세한 설명은 위 링크 포스팅을 참고하시기 바랍니다. NodePort로 접속 [root@wyj05_deploy_0 ingress]# curl 10.95.90.20:31904/..
test1 test1 htttpd 리소스들을 ingress로 묶을 예정이다. 계획은 :port/test1 로 접속하면 test1로 분기 :port/test2 로 접속하면 test2로 분기이다. bare-metal 환경이기에 ingress controller 서비스로 80 direct 접근은 불가능 하여 nodeport를 사용해야한다. 아래 내용을 참고하면 잘 이해할 수 있다. https://kubernetes.github.io/ingress-nginx/deploy/baremetal/ 구성하려는 구성도는 kubernetes 홈페이지에 너무 잘 나와있다. refer to : https://kubernetes.io/docs/concepts/services-networking/ingress/ (rewrite 참..
# pip3 install nexus3-cli 현 repo 리스트 [root@wyj02_deploy_0 ~]# nexus3 repository list Name Format Type URL nuget-group nuget group http://localhost:8081/repository/nuget-group maven-snapshots maven2 hosted http://localhost:8081/repository/maven-snapshots maven-central maven2 proxy http://localhost:8081/repository/maven-central testregi docker hosted http://localhost:8081/repository/testregi nuget..