mirror of
				https://github.com/open-webui/helm-charts
				synced 2025-06-26 18:16:14 +00:00 
			
		
		
		
	ci: Add checks for helm charts
This commit is contained in:
		
							parent
							
								
									b9cc6a30cc
								
							
						
					
					
						commit
						154753931e
					
				
							
								
								
									
										2
									
								
								.github/workflows/helm-release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/helm-release.yml
									
									
									
									
										vendored
									
									
								
							| @ -50,7 +50,7 @@ jobs: | ||||
|     runs-on: ubuntu-latest | ||||
|     steps: | ||||
|       - name: Checkout Repository | ||||
|         uses: actions/checkout@v3 | ||||
|         uses: actions/checkout@v4 | ||||
|         with: | ||||
|           fetch-depth: 0 | ||||
| 
 | ||||
|  | ||||
							
								
								
									
										52
									
								
								.github/workflows/helm-test-open-webui.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								.github/workflows/helm-test-open-webui.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,52 @@ | ||||
| name: Check Open WebUI Helm Charts (open-webui) | ||||
| 
 | ||||
| on: | ||||
|   pull_request: | ||||
|     paths: | ||||
|       - "charts/open-webui/**" | ||||
|   push: | ||||
|     paths: | ||||
|       - "charts/open-webui/**" | ||||
| 
 | ||||
| jobs: | ||||
|   lint-chart: | ||||
|     name: Lint Helm Chart | ||||
|     runs-on: ubuntu-latest | ||||
| 
 | ||||
|     steps: | ||||
|       - name: Checkout Code | ||||
|         uses: actions/checkout@v4 | ||||
| 
 | ||||
|       - name: Set up Helm | ||||
|         uses: azure/setup-helm@v4 | ||||
| 
 | ||||
|       - name: Lint open-webui Helm Chart | ||||
|         run: | | ||||
|           helm lint ./charts/open-webui | ||||
| 
 | ||||
|   test-deploy: | ||||
|     name: Test Chart Deployment | ||||
|     runs-on: ubuntu-latest | ||||
|     needs: lint-chart | ||||
| 
 | ||||
|     steps: | ||||
|       - name: Checkout Code | ||||
|         uses: actions/checkout@v4 | ||||
| 
 | ||||
|       - name: Set up kubectl | ||||
|         uses: azure/setup-kubectl@v4 | ||||
| 
 | ||||
|       - name: Set up Helm | ||||
|         uses: azure/setup-helm@v4 | ||||
| 
 | ||||
|       - name: Set up KinD Cluster | ||||
|         uses: helm/kind-action@v1 | ||||
| 
 | ||||
|       - name: Template open-webui Helm Chart | ||||
|         run: | | ||||
|           helm template open-webui ./charts/open-webui \ | ||||
|             --namespace test-namespace --create-namespace > open-webui.yaml | ||||
| 
 | ||||
|       - name: Verify open-webui | ||||
|         run: | | ||||
|           kubectl apply -f open-webui.yaml | ||||
							
								
								
									
										53
									
								
								.github/workflows/helm-test-pipelines.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								.github/workflows/helm-test-pipelines.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,53 @@ | ||||
| name: Check Open WebUI Helm Charts (pipelines) | ||||
| 
 | ||||
| on: | ||||
|   pull_request: | ||||
|     paths: | ||||
|       - "charts/pipelines/**" | ||||
|   push: | ||||
|     paths: | ||||
|       - "charts/pipelines/**" | ||||
| 
 | ||||
| jobs: | ||||
|   lint-chart: | ||||
|     name: Lint Helm Chart | ||||
|     runs-on: ubuntu-latest | ||||
| 
 | ||||
|     steps: | ||||
|       - name: Checkout Code | ||||
|         uses: actions/checkout@v4 | ||||
| 
 | ||||
|       - name: Set up Helm | ||||
|         uses: azure/setup-helm@v4 | ||||
|        | ||||
|       - name: Lint pipelines Helm Chart | ||||
|         run: | | ||||
|           helm lint ./charts/pipelines | ||||
| 
 | ||||
|   test-deploy: | ||||
|     name: Test Chart Deployment | ||||
|     runs-on: ubuntu-latest | ||||
|     needs: lint-chart | ||||
| 
 | ||||
|     steps: | ||||
|       - name: Checkout Code | ||||
|         uses: actions/checkout@v4 | ||||
| 
 | ||||
|       - name: Set up kubectl | ||||
|         uses: azure/setup-kubectl@v4 | ||||
| 
 | ||||
|       - name: Set up Helm | ||||
|         uses: azure/setup-helm@v4 | ||||
| 
 | ||||
|       - name: Set up KinD Cluster | ||||
|         uses: helm/kind-action@v1 | ||||
| 
 | ||||
|       - name: Template open-webui Helm Chart | ||||
|         run: | | ||||
|           helm template pipelines ./charts/pipelines \ | ||||
|             --namespace test-namespace --create-namespace > pipelines.yaml | ||||
| 
 | ||||
|       - name: Verify pipelines | ||||
|         run: | | ||||
|           kubectl apply -f pipelines.yaml | ||||
| 
 | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user