Vito Blog

「离开世界之前 一切都是过程」

使用 Cloudflare Workers 搭建免费的 Docker 镜像加速器

省事版 直接使用博主搭建好的 Docker 镜像加速器 https://docker.hczhch.us.kg/ 准备工作 Github 账号 Cloudflare 在 Cloudflare 托管一个域名 搭建 Fork repository https://github.com/ciiiii/cloudflare-docker-proxy/ 到自己的 ...

Git 不同账号使用不同的 SSH Key

准备多个 SSH Key 1 2 3 4 5 6 7 8 9 # 推荐使用 ED25519、RSA;选择 RSA 时,推荐的 key size 是 3072 或更大 ssh-keygen -t ed25519 -C "user1@gmail.com" # 私钥 ~/.ssh/id_ed25519 公钥:~/.ssh/id_ed25519.pub #ssh-keygen -t rsa -b...

Windows 安装 Jekyll

1. 安装 Ruby 下载安装 RubyInstallers ,推荐下载 Ruby+Devkit https://rubyinstaller.org/downloads/ 安装:使用默认路径即可,避免出错;勾选添加到PATH,就不用手动添加环境变量了 这里需要勾选安装msys2,后面安装gem和jekyll时会用到: ...

Debian 安装 Docker

官方文档: https://docs.docker.com/engine/install/debian/ 1. 卸载旧版本 1 $ for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done 2. 安装 1 2 3 4 5 ...

Kubernetes 微服务实战

MySQL NameSpace 1 2 [root@k8s-master1 ~]# kubectl create namespace dev-mysql namespace/dev-mysql created ConfigMap 1 2 3 4 5 6 7 8 9 10 11 12 apiVersion: v1 kind: ConfigMap metadata: name: m...

Kubernetes TLS

1 2 3 4 [root@k8s-master1 ~]# kubectl create secret tls zhch.lan \ --cert=/home/zc/cert/zhch.lan.crt \ --key=/home/zc/cert/zhch.lan.key secret/zhch.lan c...

Kubernetes 同一个 ServiceAccount 管理指定的多个 NameSpace 中的资源

同一个 ServiceAccount 管理指定的多个 NameSpace 中的资源 普通情况下是: ServiceAccount 通过 RoleBinding 与所在 namespace 中的 Role 进行绑定,获取所在 namespace 中的资源权限 ServiceAccount 通过 ClusterRoleBinding 与 ClusterR...

Kubernetes 配置 CoreDNS 的上游 DNS

修改 CoreDNS 的上游 DNS 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [root@k8s-master1 ~]# kubectl -n kube-system edit configmap coredns # Pl...

Kubernetes Jenkins

Jenkins Master PVC 1 2 3 4 5 6 7 8 9 10 11 12 13 apiVersion: v1 kind: PersistentVolumeClaim metadata: name: jenkins namespace: devops spec: accessModes: - ReadWriteMany volumeMod...

Kubernetes Nexus3

PVC 1 2 3 4 5 6 7 8 9 10 11 12 13 apiVersion: v1 kind: PersistentVolumeClaim metadata: name: nexus3 namespace: devops spec: accessModes: - ReadWriteMany volumeMode: Filesystem reso...