- 新增 .helmignore 文件,定义打包时忽略的文件模式 - 创建 Chart.yaml,配置 Chart 基本信息 - 重命名部署、Ingress和服务文件,统一到 templates 目录 - 新增 values.yaml,定义默认值和可配置参数
		
			
				
	
	
		
			24 lines
		
	
	
		
			349 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			349 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Patterns to ignore when building packages.
 | 
						|
# This supports shell glob matching, relative path matching, and
 | 
						|
# negation (prefixed with !). Only one pattern per line.
 | 
						|
.DS_Store
 | 
						|
# Common VCS dirs
 | 
						|
.git/
 | 
						|
.gitignore
 | 
						|
.bzr/
 | 
						|
.bzrignore
 | 
						|
.hg/
 | 
						|
.hgignore
 | 
						|
.svn/
 | 
						|
# Common backup files
 | 
						|
*.swp
 | 
						|
*.bak
 | 
						|
*.tmp
 | 
						|
*.orig
 | 
						|
*~
 | 
						|
# Various IDEs
 | 
						|
.project
 | 
						|
.idea/
 | 
						|
*.tmproj
 | 
						|
.vscode/
 |