- brief introduction
- Table of contents
- Latest documents
- Collection Download
Helm内置对象Release相关变量
Helm内置对象Release相关变量 Release: Release对象描述了版本发布本身。包含了以下对象: Release.Name: release名称 Release.Namespace: 版本中包含的命名空间(如果manifest没有覆盖的话) Release.IsUpgrade: 如果当前操作是升级或回滚的话,该值将被设置为true Release.IsInstall: 如果当前………
zhangky - April 26, 2022, 9:52 a.m.
networking.k8s.io/v1
yaml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: annotations: kubernetes.io/ingress.class: traefik # 根据使用的ingress类型配置 labels: app.kubernetes.io/component: hub # 根据使用的label配置 ………
zhangky - Jan. 10, 2022, 2:28 p.m.
k3s脚本快速安装
k3s脚本快速安装 为了快速部署测试环境用于测试一些开源中间件或系统,所以安装k3s作为测试环境。 环境要求 ```shell 系统内核版本:Linux 3.10+ (CentOS 7, Debian 8/9, Ubuntu 14.04+) K3S Server端最低内存要求:512 MB K3S Agent端内存最低要求:75MB 磁盘空间最低要求:200 MB 支持的硬件架构:x86_64,………
zhangky - Jan. 10, 2022, 1:03 p.m.
artifact hub
artifact hub 是用于替换monocular的web应用,可以管理安装helm charts 安装 helm repo add artifact-hub https://artifacthub.github.io/helm-charts/ helm install my-artifact-hub artifact-hub/artifact-hub --version 1.5.0 配置I………
zhangky - Jan. 6, 2022, 5:42 p.m.
Chartmuseum
Chartmuseum helm3默认不再提供仓库功能,需要通过官方提供的工具chartmuseum来实现。 使用k8s部署 k8s版本: v1.22.5+k3s1 yaml配置文件 ```yaml apiVersion: v1 kind: Service metadata: labels: production: chartmuseum name: chartmuseum ………
zhangky - Jan. 6, 2022, 2:28 p.m.