PART Ⅰ : 容器云OPENSHIFT
- 安装
- 数据持久化
- 集群管理
- 数据持久化
- 管理
- 网络
- 安全审计
- 工具应用部署
PART Ⅱ:容器云 KUBERNETES
- 基础
- 原理
- 系统应用/网络CNI/TRaefik
- 安装
- 集群管理
- 用户认证ServiceAccount与授权策略RBAC
- K8S应用管理工具Helm
- 问题
- 辅助工具
- Doing:K8S 多集群管理与网络互联
- VM On K8S
PART Ⅲ:持续集成与持续部署
- CICD优化总结
- Jenkins
- Gitlab
- Drone
- Nexus
- 配置
- 使用OrientDB Console在DB层面修改配置
- [设置SMTP邮件服务](https://www.wenjiangs.com/doc/krrcu7ebin9hh
- 仓库管理
- 数据备份恢复
- API
- Jenkins相关插件
- 配置
- SonarQube静态代码扫描分析
- LDAP
- Apollo
- 项目管理工具
- Jira
- Redmine
- Harbor
- Vault
- Alfred
- Web IDE: VSCode
- DolphinScheduler
PART Ⅴ:日志/监控/告警
- Logging
- Kafka/Zookeeper
- Filebeat
- Metrics
- Tracing
- Sentry日志聚合告警平台
PART Ⅵ:基础
- Docker
- Shell脚本
- Mave
- git
- 正则表达式
- SSL/TLS
- Ceph
- 性能压力测试
- PXE+Kickstart
- netboot.xyz
- Tool
- Windows
- MacOS小技巧
- Linux
- Linux排错优化
- iptables详解
- MySQL
- Redis
- 负载均衡与代理
- 代理服务器
- Nginx
- GitBook
- Telegram机器人
- OpenVPN Server
- iDRAC
- vSphere
- Raspberry Pi树莓派
- 钉钉机器人
- Aliyun CLI
- 音、视频处理工具:fffmpeg
- 图片处理工具:Imagemagick
- PDF处理工具:Ghostscript
- Nvidia
- Virtualbox 虚拟机管理
- 阿里云产品使用总结
- RustDesk:可自建远程控制软件
- Poste:自建邮件服务器
- 使用 Jlink构建最小化依赖的 JRE 环境
- Aria2
- Asuswrt-Merlin
- Trap:Shell脚本信号跟踪
- 零散知识汇总
- BarkServer通知
- Synology
PART Ⅶ:数据存储、处理
PART VIII:CODE
- Python学习笔记
- 基础语法
- statik 将静态资源文件打包到二进制文件中
- HTML/CSS 学习笔记
- JavaScript学习笔记
PART X:HACKINTOSH
PART XI:安全
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
helm charts编写规则
Prerequisite:初始化一个模板charts
helm create charts名
以创建一个test charts为例进行说明
helm create test
# 会在当前路径下产生以下目录结构的文件
test/
Chart.yaml # Charts的描述信息。例如作者信息,使用的k8s api版本等
LICENSE # Charts的许可证等信息(可选)
README.md # Charts的README(可选)
requirements.yaml # Charts的依赖管理文件(可选)
values.yaml # charts的默认配置项
charts/ # 存放Charts所依赖的其他charts
templates/ # 存放Charts的k8s资源声明文件模板
|-- NOTES.txt # 简短使用说明文件(可选)
Chart.yaml
文件是编写Charts 所必需的。描述Chart的描述信息
apiVersion: The chart API version (必须)
name: Chart名 (必须)
version: Chart的版本信息 (必须)
kubeVersion: A SemVer range of compatible Kubernetes versions (可选)
description: 一句描述chart的话 (可选)
type: chart类型 (可选)
keywords:
- chart关健字 (可选)
home: The URL of this project's home page (可选)
sources:
- chart的源代码仓库URL(可选)
dependencies: # 依赖的chart (可选)
- name: 依赖的chart名
version: 依赖的chart版本
repository: The repository URL ("https://example.com/charts") or alias ("@repo-name")
condition: (可选) A yaml path that resolves to a boolean, used for enabling/disabling charts (e.g. subchart1.enabled )
tags: # (可选)
- Tags can be used to group charts for enabling/disabling together
enabled: (可选) Enabled bool determines if chart should be loaded
import-values: # (可选)
- ImportValues holds the mapping of source values to parent key to be imported. Each item can be a string or pair of child/parent sublist items.
alias: (可选) Alias usable alias to be used for the chart. Useful when you have to add the same chart multiple times
maintainers: # (可选)
- name: The maintainer's name (必须 for each maintainer)
email: The maintainer's email (可选 for each maintainer)
url: A URL for the maintainer (可选 for each maintainer)
icon: A URL to an SVG or PNG image to be used as an icon (可选).
appVersion: The version of the app that this contains (可选). This needn't be SemVer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论