본문 바로가기

전체 글74

[Kubernetes] 노드 IP 변경 방법 쿠버네티스에서 NIC를 2개로 구성하여 1개를 내부 네트워크로 통신하게끔 만들때 NIC 2개중 어떤 아이피로 사용할 것인지 설정할수 있다. vim /etc/systemd/system/kubelet.service.d/10-kubeadm.conf 해당폴더를 열어 전체의 가장 마지막 줄에 --node-ip [원하는 IP] 추가한다. # Note: This dropin only works with kubeadm and kubelet v1.11+ [Service] Environment="KUBELET_KUBECONFIG_ARGS=--bootstrap-kubeconfig=/etc/kubernetes/bootstrap-kubelet.conf --kubeconfig=/etc/kubernetes/kubelet.conf".. 2023. 6. 20.
[Kubernetes] 쿠버네티스(k8s) 1.25.3 설치하기 구동환경 OS : debian11 container-runtime : containerd 설치방법 : https://librat.kr/entry/Kubernetes-Containerd-설치하기-k8s-container-runtime K8S_ver : 1.25.3 [Kubernetes] Containerd 설치하기 - k8s container runtime 쿠버네티스는 docker와 containerd를 container runtime으로 사용할 수 있다. 이 포스팅에서는 containerd를 설치하는 방법을 설명하겠다. apt update apt-get install -y apt-transport-https ca-certificates curl software-properties librat.kr cat 2023. 6. 20.
[Kubernetes] Containerd 설치하기 - k8s container runtime 쿠버네티스는 docker와 containerd를 container runtime으로 사용할 수 있다. 이 포스팅에서는 containerd를 설치하는 방법을 설명하겠다. apt update apt-get install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 nfs-common curl -fsSL [https://download.docker.com/linux/debian/gpg](https://download.docker.com/linux/debian/gpg) | apt-key add - add-apt-repository "deb \[arch=amd64\] [https://download.docker.com/.. 2023. 6. 20.
[VMware] 가상머신 하드 용량 늘리기 VMware에서 하드분리, 추가없이 하드용량을 늘릴 수 있다. 우측 Expand 클릭 후 용량증설 리눅스 부팅후 다음과 같이 명령어 입력 apt-get install -y parted parted [디바이스] print free resizepart 1 resize2fs /dev/sda1 2023. 6. 19.
[VMware] 가상머신 폴더 변경방법 VMware에서 가상머신 기본 폴더 경로를 바꿀수 있다. 왼쪽 상단 Edit - preferences - Workspace - 상단 경로수정 2023. 6. 19.
[리눅스 간단 명령어] nvm install curl -s -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash 2021. 9. 21.
fstab /etc/fstab /dev/sdb1/DBext4defaults11 2021. 9. 20.
docker-compose install curl -L "https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m)" > ./docker-compose mv ./docker-compose /usr/bin/docker-compose chmod +x /usr/bin/docker-compose 2021. 9. 19.
리눅스 history지우기 history -c && history -w 2021. 9. 18.
우분투 커널, 버전 확인 커널 uname -r 우분투 버전 lsb_release -a 2021. 9. 17.