본문 바로가기

DKE

(68)
[Kubeflow] ERROR [403] poddefaults.kubeflow.org is forbidden / 2023.06.14 Kubeflow dashboard의 tensorboard를 클릭하면 아래와 같은 에러가 발생했다. [403] poddefaults.kubeflow.org is forbidden: User "system:serviceaccount:kubeflow:tensorboards-web-app-service-account" cannot list resource "poddefaults" in API group "kubeflow.org" in the namespace "kubeflow-user-example-com" 해당 오류는 사용자가 해당 리소스에 대한 권한이 없기 때문에 발생하는 것으로 보임!! "tensorboards-web-app-service-account" 사용자가 "kubeflow-user-example-..
230609 deepDR: a network-based deep learning approach to in silico drug repositioning https://academic.oup.com/bioinformatics/article/35/24/5191/5497253 deepDR: a network-based deep learning approach to in silico drug repositioning AbstractMotivation. Traditional drug discovery and development are often time-consuming and high risk. Repurposing/repositioning of approved drugs offers a rela academic.oup.com
Kubeflow 설치하기 (Ubuntu 20.04) / 2023.06.09 Step 1. 설치 환경 갖추기 https://github.com/kubeflow/manifests GitHub - kubeflow/manifests: A repository for Kustomize manifests A repository for Kustomize manifests. Contribute to kubeflow/manifests development by creating an account on GitHub. github.com 위 사이트에 들어가면 사전에 설치해야할 목록이 있다 정리해보면, 쿠버네티스 1.25 버전 (StorageClass 설치), kustomize 5.0.0 버전 버전이 다르면 설치가 되지 않으니 꼭 지킬것!!! 쿠버네티스는 설치했다고 가정하고 다음 step 부터 진행 ..
230530 [Kubernetes] Volume https://www.inflearn.com/course/%EC%BF%A0%EB%B2%84%EB%84%A4%ED%8B%B0%EC%8A%A4-%EA%B8%B0%EC%B4%88/dashboard 대세는 쿠버네티스 [초급~중급] - 인프런 | 강의 쿠버네티스는 앞으로 어플리케이션 배포/운영에 주류가 될 기술 입니다. 이 강좌를 통해 여러분도 대세에 쉽게 편승할 수 있게 됩니다., - 강의 소개 | 인프런 www.inflearn.com ppt는 인프런에서 제공하는 대세는 쿠버네티스 강의를 바탕으로 작성되었습니다
230530 [Kubernetes] Service https://www.inflearn.com/course/%EC%BF%A0%EB%B2%84%EB%84%A4%ED%8B%B0%EC%8A%A4-%EA%B8%B0%EC%B4%88/dashboard 대세는 쿠버네티스 [초급~중급] - 인프런 | 강의 쿠버네티스는 앞으로 어플리케이션 배포/운영에 주류가 될 기술 입니다. 이 강좌를 통해 여러분도 대세에 쉽게 편승할 수 있게 됩니다., - 강의 소개 | 인프런 www.inflearn.com ppt는 인프런에서 제공하는 대세는 쿠버네티스 강의를 바탕으로 작성되었습니다
230530 [Kubernetes] Pod https://www.inflearn.com/course/%EC%BF%A0%EB%B2%84%EB%84%A4%ED%8B%B0%EC%8A%A4-%EA%B8%B0%EC%B4%88/dashboard 대세는 쿠버네티스 [초급~중급] - 인프런 | 강의 쿠버네티스는 앞으로 어플리케이션 배포/운영에 주류가 될 기술 입니다. 이 강좌를 통해 여러분도 대세에 쉽게 편승할 수 있게 됩니다., - 강의 소개 | 인프런 www.inflearn.com ppt는 인프런에서 제공하는 대세는 쿠버네티스 강의를 바탕으로 작성되었습니다
Kubernetes 설치하기 (Ubuntu 20.04) / 2023.06.06 1. 모든 노드 (마스터 및 워커) 에서 아래 작업 수행 1-1. 각 노드에서 권한 변경 sudo su 1-2. 모든 노드에서 swap, 방화벽 비활성화 swapoff -a sed -i '/swap/d' /etc/fstab sudo ufw disable 1-3. 쿠버네티스 설치에 필요한 패키지들 추가 apt-get update && apt-get install -y apt-transport-https curl curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - cat
Docker 설치하기 (Ubuntu 20.04) / 2023.06.05 1. 레포지토리 업데이트, 필요한 패키지 설치 sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg \ lsb-release 2. Docker GPG key 추가 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 3. Docker 레포지토리 추가 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" 위 명령어에서 focal은 Ubuntu 20.04의 코드네임 -> 우분투 버전에 따라서..