Go modules (mod)

go 1.11 버전에서는 go modules 가 도입되어 시험적으로 사용할 수 있게 되었다.

Go dependency management tool (dep)

Go 언어 에서는 dep 으로 의존성 관리를 하고 있었다.

하지만

Once Go 1.11 is out, it really makes very little sense for a new project not already using dep to start using it. Dep has many, many problems - some of which Sam acknowledged in the talk - and you avoid all of them, avoid taking the time to master a system that is going away, and help make Go modules better by simply using Go modules from the start.

이렇다…

Kubernetes basics

쿠버네티스의 클러스터 구조는 다음과 같다.

  1. 클러스터 전체를 관리하는 컨트롤러로써 마스터가 존재한다.
  2. 컨테이너가 배포되는 머신인 노드가 존재한다.