본문 바로가기

Tech116

Docker Swarm 설치하기 1. Docker 설치# sudo apt update # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - # sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" # sudo apt update # sudo apt-get install docker-ce # sudo docker run hello-world제대로 설치 되면 아래와 같이 나온다Unable to find image 'hello-world:latest' locally latest: Pulling from li.. 2017. 12. 24.
Juju란? Juju는 Ubuntu를 배포하는 Canonical의 오케스트레이션 툴이다.공식 문서에는 이렇게 나와 있다.What is Juju?Juju is a state-of-the-art, open source modelling tool for operating software in the cloud. Juju allows you to deploy, configure, manage, maintain, and scale cloud applications quickly and efficiently on public clouds, as well as on physical servers, OpenStack, and containers. You can use Juju from the command line or throu.. 2017. 12. 24.
Azure Stack 설치하기 MS의 Public Cloud 서비스인 Azure의 Private 버전인 Azure Stack이라는 것이 있다. https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-poc결국엔 On-Premises환경에 Azure를 구성하고 필요시 Public의 Azure와 연동해서 사용할 수 있도록 해주는 Hybrid 형태의 클라우드 구성인 것이다. Private에 Azure제품이 들어가니 기존 Public의 Azure와 동일(?)할 것이라는 믿음도 있고, Azure를 사용했던 고객들은 따로 학습할 필요 없이 Azure를 사용할 수 있다는 개념으로 나온 것 같다. 1. Azure Stack 설치 준비https://docs.microsoft.com/en-us/.. 2017. 12. 23.
Juju VMware에서 연동하기 이번에 juju가 2.2.1로 업데이트 되면서 Juju의 cloud 항목 중에서 Oracle Cloud와 vcenter 를 지원하게 됐다https://jujucharms.com/docs/2.2/help-vmware추가 하는 방법은아래와 같이 yaml 파일을 하나 만들고 저장한다. (myvcenter.yaml)clouds:myvcenter: type: vsphere auth-types: [userpass] endpoint: regions:: {}저장 이후에 cloud를 추가한다.$ juju add-cloud myvcenter myvcenter.yaml추가 된뒤에 목록은 아래와 같이 수행하면 리스트를 보여준다$ juju clouds그리고 난 뒤 vcenter에 접근하기 위한 credential을 생성한다.$.. 2017. 12. 22.