일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- port open
- cloud-init
- yum
- repository
- HTML
- Octavia
- kolla
- ceph-ansible
- ceph
- Kubeflow
- ubuntu
- libvirt
- pacman
- archlinux
- OpenStack
- KVM
- i3
- kolla-ansible
- k8s
- Ansible
- nfs-provisioner
- awx
- Arch
- Docker
- Kubernetes
- grafana-loki
- golang
- Linux
- terraform
- cephadm
- Today
- Total
목록분류 전체보기 (189)
YJWANG
refer to https://www.pgpool.net/docs/42/en/html/example-kubernetes.html https://www.pgpool.net/docs/latest/en/html/configuring-pgpool.html https://kimdubi.github.io/postgresql/psql_pgpool/ https://www.pgcon.org/events/pgcon_2020/sessions/session/45/slides/44/HA_Cluster_on_K8s.pdf https://hub.docker.com/r/bitnami/pgpool/ https://github.com/CrunchyData/postgres-operator/issues/287 Option [root@wor..
PGpool https://www.pgpool.net/docs/42/en/html/example-kubernetes.html https://www.pgpool.net/docs/latest/en/html/configuring-pgpool.html postgreSQL Streaming_Replication https://www.digitalocean.com/community/tutorials/how-to-set-up-physical-streaming-replication-with-postgresql-12-on-ubuntu-20-04 Master1 [root@worker01 ~]# cat /var/lib/pgsql/12/data/postgresql.conf |grep listen listen_addresses..
refer to https://www.postgresql.org/download/ 설치 https://www.postgresql.org/download/linux/redhat/ [root@kube62_deploy_0 postgreSQL]# dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm ... [root@kube62_deploy_0 postgreSQL]# dnf -qy module disable postgresql [root@kube62_deploy_0 postgreSQL]# dnf install -y postgresql12-server ... ..
Config > Node > change '# of executors'
NFS Server 구성 Playbook 해당 playbook을 실행하면 지정한 node의 /data를 export 합니다. 사용법 # ansible-playbook -i nfs_server.yaml Customization # path 및 line을 변경하여 권한과 directory를 변경하세요 - name: Create Exported Directory file: path: /data state: directory mode: '0777' lineinfile: path: /etc/exports line: '/data *(rw,no_root_squash,sync)' # hosts를 변경하여 다른 host에 실행하도록 하세요 hosts: master01결과 수행 결과 제일 아래..
https://yjwang.tistory.com/entry/kubeflow-installation-On-premise-kfctlistiodex https://www.kubeflow.org/docs/started/k8s/kfctl-istio-dex/ # Download the dex config kubectl get configmap dex -n auth -o jsonpath='{.data.config\.yaml}' > dex-config.yaml # Edit the dex config with extra users. # The password must be hashed with bcrypt with an at least 10 difficulty level. # You can use an o..