일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- terraform
- ceph
- Arch
- libvirt
- k8s
- Docker
- Octavia
- OpenStack
- ceph-ansible
- cloud-init
- port open
- nfs-provisioner
- repository
- kolla-ansible
- kolla
- cephadm
- Kubeflow
- Linux
- Ansible
- golang
- i3
- HTML
- archlinux
- Kubernetes
- awx
- ubuntu
- grafana-loki
- KVM
- yum
- pacman
- Today
- Total
목록분류 전체보기 (189)
YJWANG
Refer to https://reoim.tistory.com/entry/Kubernetes-Helm-%EC%82%AC%EC%9A%A9%EB%B2%95 https://v2.helm.sh/docs/using_helm/#installing-helm https://helm.sh/docs/intro/using_helm/ Install Helm Client 아래에서 소개된 방법 외에도 Helm 공식 문서 통해서 추가로 확인할 수 있다. From script [root@master01 helm]# curl -LO https://git.io/get_helm.sh [root@master01 helm]# chmod +x get_helm.sh [root@master01 helm]# ./get_helm.sh From pre..
PVC를 생성하면 지정한 Storage Class에서 provisioner 항목을 보고 provisioner를 통해 pv를 생성하고 매핑한다. 이후 해당 pvc를 pod 및 deployment에서 사용하면 된다. 물론 NFS-Server는 사전에 구성을 해두어야 한다. Ansible로 구성하는 방법도 포스팅 해두었으니 참고하길 바란다. yjwang.tistory.com/entry/Ansible-NFS-%EC%84%9C%EB%B2%84-%EA%B5%AC%EC%B6%95 아래 yaml을 순서대로 실행하면 된다. 00-rbac.yaml kind: ServiceAccount apiVersion: v1 metadata: name: nfs-pod-provisioner-sa --- kind: ClusterRole #..
[root@master01 localPV\]# kubectl config get-clusters NAME yjwang.k8s
본 포스팅에서는 Jenkins를 Kubernetes 위에 설치하는 방법에 대해 다룰 예정입니다. PV(PersistentVolume)은 NFS를 사용할 예정이니 NFS Server설정을 사전에 하고 해당 Directory에 Other User가 RWX할 수 있도록 권한 부여가 필요합니다. 추가로 NFS PV 사용 관련한 포스팅이 별도로 있으니 참고 하시기 바랍니다. https://yjwang.tistory.com/entry/Kubernetes-PV-NFS refer to https://github.com/kubernetes/examples/tree/master/staging/volumes/nfs https://www.jenkins.io/doc/book/installing/kubernetes/ Deploy..
k8s PersistentVolume NFS https://github.com/kubernetes/examples/tree/master/staging/volumes/nfs prerequisite 사전작업 NFS구성이므로 자세히 설명하진 않겠습니다. CentOS8.X 기준으로 아래와 같이 NFS 서버를 구성하고 테스트합니다. 당연히 export할 directory는 사전히 생성돼야합니다. 227 yum -y install nfs-utils.x86_64 228 systemctl status nfs-server 229 systemctl status firewalld 230 getenforce [root@wyj01_deploy_0 data]# head -v -z /etc/exports ==> /etc/expor..
크롤러-1 에서 가져온 dict를 flask_table을 이용해 html table로 변형하는 코드이다. import requests, json from flask_table import Table, Col class ItemTable(Table): classes = ['table', 'table-striped', 'table-bordered', 'table-condensed'] articleName = Col('단지') buildingName = Col('동') tradeTypeName = Col('매물 종류') dealOrWarrantPrc = Col('금액') floorInfo = Col('층') area2 = Col('평수') articleConfirmYmd = Col('매물 일자') articl..