https://github.com/bookiu/helm-template
Application helm template
https://github.com/bookiu/helm-template
Last synced: 3 months ago
JSON representation
Application helm template
- Host: GitHub
- URL: https://github.com/bookiu/helm-template
- Owner: bookiu
- Created: 2021-08-10T02:11:57.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-18T09:16:41.000Z (about 3 years ago)
- Last Synced: 2025-01-29T23:13:19.483Z (5 months ago)
- Language: Smarty
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Helm部署模板
# 使用
下载该项目到你项目的`deployments/kubernetes/helm`(该目录可以自定义)文件夹中,按自己需求修改`Chart.yaml`文件中的`name`、`description`和`appVersion`等值。安装命令如下:
```bash
helm upgrade --install --create-namespace \
--namespace=your_namespace \
--set image.secret.username=123 \
--set image.secret.password=456 \
--set image.tag=v1.1.1 \
your_app_name ./deployments/kubernetes/helm```