Kubeadm部署k8s
一、介绍 kubeadm方式可以轻松安装K8s集群。 二、环境准备 2.1 规划 主机名 IP 系统版本 配置 K8S版本 CRI版本 k8s231 192.168.10.231 rocky 9.6 2C4G 1.36.0 2.2.3 k8s232 192.168.10.232 rocky 9.6 2C4G 1.36.0 2.2.3 k8s233 192.168.10.233 rocky 9.6 2C4G 1.36.0 2.2.3 2.2 基础设置 设置主机名 (分别在各节点执行) 123hostnamectl set-hostname k8s231hostnamectl set-hostname k8s232hostnamectl set-hostname k8s233 设置主机名解析 12345cat >> /etc/hosts << EOF192.168.10.231 k8s231192.168.10.232 k8s232192.168.10.233 k8s233EOF...
Hexo详细配置
一、Front-matter Front-matter 是 markdown 文件最上方以 — 分隔的区域,用于指定个别档案的变数。 Page Front-matter 用于 页面 配置 Post Front-matter 用于 文章页 配置 1.1 Page Front-matter 12345678910111213141516171819---title: {{ title }}date: {{ date }}updated:type:comments:description:keywords:top_img:mathjax:katex:aside:aplayer:highlight_shrink:random:limit: type: value:--- 1.2 Post Front-matter 123456789101112131415161718192021222324252627---title:date:updated:tags:categories:keywords:des...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment
Hexo博客部署记录
Hexo博客部署记录 Hexo是一个基于Node.js的静态网站生成器,主要用于创建博客和文档网站。 一、安装环境 已经6202年了,推荐 scoop 安装。 nodejs官网 https://nodejs.org/zh-cn git官网 https://git-scm.com/ 验证 1234node -vnpm -vpnpm -vgit --version 1234567891011node -vv24.15.0npm -v11.12.1pnpm -v10.33.2git --versiongit version 2.54.0.windows.1 二、安装Hexo 全局安装Hexo 1npm install -g hexo-cli 初始化站点 12hexo init www.bravexist.cncd www.bravexist.cn 安装依赖 1pnpm install 三、生成静态文件并启动本地服务器 清理旧文件 1hexo clean 生成静态文件,可简写 hexo g 1hexo generate 启动预览,默认 http://...









