일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Elasticsearch
- syslog
- PostgreSQL
- Shell
- 크롬
- docker
- Chrome
- centos 7.5
- Python
- Elk
- 파이썬
- rsyslog
- RHEL
- K8S
- GPU
- audit
- JSON
- yum
- 빅데이터
- C
- Linux
- CentOS
- Audit Log
- 디렉토리
- 서울시민카드
- zabbix
- log
- Kubernetes
- GNOME
- bash
- Today
- Total
목록K8S (4)
Sysops Notepad
https://kubernetes.io/docs/setup/independent/high-availability/ # vi kubeadm-config.yaml apiVersion: kubeadm.k8s.io/v1beta1kind: ClusterConfigurationkubernetesVersion: stableapiServer: certSANs: - "LOAD_BALANCER_DNS"controlPlaneEndpoint: "LOAD_BALANCER_DNS:LOAD_BALANCER_PORT" # kubeadm init --config=kubeadm-config.yaml kubeadm join 192.168.0.200:6443 --token j04n3m.octy8zely83cy2ts --discovery-t..
k8s Service Type ClusterIP디폴트 설정으로, 서비스에 클러스터 IP를 할당 Load Balancer외부 IP 를 가지고 있는 로드밸런서를 할당클러스터 외부에서 접근이 가능 NodePort노드의 IP와 포트를 통해서도 접근이 가능 type: NodePort ports: - name: http port: 80 protocol: TCP targetPort: 8080 nodePort: 18080 Client -> 80 service -> 8080 podClient -> 18080 node ExternalName외부 서비스를 쿠버네티스 내부에서 호출 ( dns forwarding) type: ExternalName externalName: test.example.com Endpoint 지정ap..
rancher https://rancher.com/docs/rancher/v2.x/en/installation/ha/create-nodes-lb/nginx/ docker run -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher # k8s master인증,권한 관리API entry point(API Server : HTTP를 통해 내부 및 외부 인터페이스를 제공합니다. 이를 통해 Pod, Service, Replication Controller 등의 설정)컨테이너 할당 스케줄링스케일링, 복제 컨트롤러 (Controller Manager : DaemonSet Controller, Replication Controller등의 개체를 모니터링하고 ..
nvidia Driver 415.18 install # yum install kernel-devel kernel-headers gcc make # lsmod | grep nouveau # vi /etc/modprobe.d/blacklist-nouveau.confblacklist nouveauoptions nouveau modeset=0 # dracut --force# reboot lspci | grep VGA # wget http://download.nvidia.com/XFree86/Linux-x86_64/415.18/NVIDIA-Linux-x86_64-415.18.run # bash NVIDIA-Linux-x86_64-390.59.run cuda 10.0 install # rpm -i cuda-repo..