The following pages and posts are tagged with

Các bước sau khi cài đặt Docker trên hệ thống Linux

Bài viết này sẽ trình bày các cài đặt hệ thống Linux để làm việc tốt hơn với Docker. 1. Quản lý Docker với một người dùng non-root Docker daemon gắn với một UNIX socket thay vì một cổng TCP. Mặc định, một Unix socket được...

Linux Containers Cgroups

1. What’s cgroups? cgroups stands for Control Groups, it’s a feature of Linux kernel that allocates and isolates resources: CPU, memory, disk I/O and networking of one or more processes. The below figure shows the configurations of cgroups in Linux kernel: <img src="/static/img/LXC/cgroups-kernel.PNG" alt="cgroups"...

Deploying multiple nodes with Kubeadm

Preparing Environment OS: Ubuntu 16.04 LTS Master Node: enp0s3: NAT (Access to Internet) enp0s8: Host Only 192.168.205.10 (Master Node IP) Worker Node: enp0s3: NAT (Access to Internet) enp0s8: Host Only 192.168.205.11 (Worker Node IP) Configure static ip for enp0s8...

Deploying single cluster with minikube behind proxy

Preparing environment OS: Ubuntu 16.04 LTS Clear previous installation if you’ve already done it before: $ sudo kubeadm reset $ sudo rm -rf /var/lib/minikube/certs/ $ sudo rm -rf /etc/kubernetes/ $ sudo rm -rf /etc/lib/etcd/...