Claire Lee·Apr 27, 2023Kubernetes: Resources for Pods and ContainersKubernetes uses YAML files to specify resource requirements for pods and containers, including CPU and memory resources. CPU resources are…A response icon1A response icon1
Claire Lee·Apr 22, 2023Kubernetes: Folder Structure and Functionality OverviewKubernetes directory structure includes /etc/kubernetes/ for main configuration files, /etc/kubernetes/manifests/ for YAML files of system…
Claire Lee·Apr 14, 2023Kubernetes: High-level Steps for Deploying Kubernetes with KubeadmThe general procedures for deploying a Kubernetes cluster using Kubeadm.A response icon1A response icon1
Claire Lee·Apr 13, 2023Kubernetes: IngressKubernetes Ingress allows external access to services within a cluster by following traffic direction rules defined in Ingress resources…A response icon1A response icon1
Claire Lee·Apr 12, 2023Kubernetes: DNSIn Kubernetes, DNS names are assigned to Pods and Services for communication by name instead of IP address. The default domain name used…A response icon1A response icon1
Claire Lee·Apr 11, 2023Kubernetes: Service NetworkingIn Kubernetes, Service networking is handled by kube-proxy. Kube-proxy routes traffic to the appropriate pods based on the service’s…A response icon3A response icon3
Claire Lee·Apr 10, 2023Kubernetes: Weave Net CNI PluginWeave Net is a CNI plugin that creates a virtual network for Kubernetes clusters. It installs a Weave Net container on each node, creating…
Claire Lee·Apr 9, 2023Kubernetes: Container Network Interface(CNI)In Kubernetes, each Pod is assigned a unique IP address and can communicate with other Pods without requiring NAT. To provide networking to…A response icon3A response icon3
Claire Lee·Apr 7, 2023Linux Networking: Network NamespacesNetwork namespaces enable the creation of multiple independent network stacks on a single Linux host, providing isolated environments for…A response icon2A response icon2
Claire Lee·Apr 6, 2023Linux Networking: DNSIn Linux networking, hostname resolution can be done through either the local /etc/hosts file, which maps hostnames to IP addresses, or by…