一佳互联

展开菜单

Install and use rancher helm-controller

Install and use rancher helm-controller
Install and use rancher helm-controller September 20, 2020 K3S comes with a Helm operator called Helm Controller. Helm Controller defines a new HelmChart custom resource definition, or CRD, for managing...

Install K3S with k3sup and kube-vip

Install K3S with k3sup and kube-vip
Install K3S with k3sup and kube-vip April 16, 2021 In this post I will show you how to install K3S with k3sup. I will use kube-vip for High-Availability and load-balancing. Parst of the K3S series...

Install K3S with k3sup and Cilium

Install K3S with k3sup and Cilium
Install K3S with k3sup and Cilium April 17, 2021 In this post I will show you how to install K3S with k3sup and use Cilium as networking. Parst of the K3S series Part1a: Install K3S with k3sup a...

Install K3S with k3sup and Calico

Install K3S with k3sup and Calico
Install K3S with k3sup and Calico April 18, 2021 In this post I will show you how to install K3S with k3sup and use Calico as networking. Parst of the K3S series Part1a: Install K3S with k3sup a...

RKE2 Install With cilium

RKE2 Install With cilium
RKE2 Install With cilium May 24, 2021 In this post I will show you how you can install a RKE2 in with cilium’s encripted VXLAN. Parst of the K8S Security series Part1: Best Practices to keeping...

RKE2 Install With Calico

RKE2 Install With Calico
RKE2 Install With Calico May 25, 2021 In this post I will show you how you can install a RKE2 in with Calico’s encripted VXLAN. Parst of the K8S Security series Part1: Best Practices to keeping...

Kubernets对接kadalu

Kubernets对接kadalu
介绍 Kadalu 是一个在容器生态系统(如 kubernetes、openshift、RKE 等)中提供持久存储的项目,基于csi实现。https://github.com/kadalu/kadalu 部署 可以通过两种方式来进行部署,即二进制部署和yaml部署。下面分别进行介绍。 二进制部署 部署在Kubernetes上: #curl -LO https://github.com/kadalu/kadalu/releases/latest/download/kubec...

Kubernetes容器集群 - Secret(特殊存储卷)

Kubernetes容器集群 - Secret(特殊存储卷)
  一、Secret介绍在Kubernetes集群资源中,Secret对象与ConfigMap对象类似,但它主要是用于存储小片敏感的需要加密的数据,例如密码,token和SSH key密钥等等。这类数据当然也可以存放在Pod的定义中或者镜像中,但是放在Secret中是为了更方便的控制如何使用数据,更加安全和灵活,并减少信息暴露的风险。在secret中存储的数据都需要通过base64进行转换加密后存放。Secret解决了密码、token、密钥等敏感数据的配置问题,使...

Kubernetes容器集群管理环境 - 完整部署(上篇)

Kubernetes容器集群管理环境 - 完整部署(上篇)
  Kubernetes(通常称为"K8S")是Google开源的容器集群管理系统。其设计目标是在主机集群之间提供一个能够自动化部署、可拓展、应用容器可运营的平台。Kubernetes通常结合docker容器工具工作,并且整合多个运行着docker容器的主机集群,Kubernetes不仅仅支持Docker,还支持Rocket,这是另一种容器技术。Kubernetes是一个用于容器集群的自动化部署、扩容以及运维的开源平台。通过Kubernetes, 可以快速有效地响...

Kubernetes容器集群管理环境 - 完整部署(中篇)

Kubernetes容器集群管理环境 - 完整部署(中篇)
  接着Kubernetes容器集群管理环境 - 完整部署(上篇)继续往下部署: 八、部署master节点master节点的kube-apiserver、kube-scheduler 和 kube-controller-manager 均以多实例模式运行:kube-scheduler 和 kube-controller-manager 会自动选举产生一个 leader 实例,其它实例处于阻塞模式,当 leader 挂了后,重新选举产生新的 leader,从而保证...