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...

Github workflow for contributing to Kubernetes

1. Big picture 2. Fork a repository Goto https://github.com/kubernetes/kubernetes Hit the Fork button to fork your own copy of repo kubernetes to your github account 3. Clone the forked repository to local Clone the forked...

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/...

How to test my code (Go) on Kubernetes (K8s)

Làm thế nào để tôi có thể test (kiểm tra) code của tôi trên cụm cluster của Kubernetes là mục tiêu của bài viết này. Trong bài viết này tôi đề cập đến trường...

Deploying multi-master nodes (High Availability) K8S

kubeadm is a tool which is a part of the Kubernetes project. It helps you deploy a Kubernetes cluster but it still has some limitations and one of these is t...

Upgrading kubeadm HA K8S cluster from v1.13.5 to v1.14.0

kubeadm is a tool which is a part of the Kubernetes project. It helps you deploy a Kubernetes cluster. This article will show you the way to upgrade a Highly...

Deploying Stateful WordPress and MySQL on K8s HA Cluster

This article takes a practical, hands-on lab to deploy a WordPress application on K8s HA cluster