mirror of
				https://github.com/open-webui/helm-charts
				synced 2025-06-26 18:16:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| 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          
 | |
| 
 | |
|       - name: Add Dependency Repos
 | |
|         run: |
 | |
|           helm repo add ollama https://otwld.github.io/ollama-helm/
 | |
|           helm repo add open-webui https://helm.openwebui.com/
 | |
|           helm repo add tika https://apache.jfrog.io/artifactory/tika/
 | |
|           helm repo add redis https://charts.bitnami.com/bitnami
 | |
|           helm repo add milvus https://zilliztech.github.io/milvus-helm          
 | |
|       - name: Build open-webui Helm dependencies
 | |
|         run: |
 | |
|           helm dependency build ./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 create namespace test-namespace
 | |
|           kubectl apply --namespace test-namespace -f open-webui.yaml
 | |
|           kubectl wait --namespace test-namespace pod/open-webui-0 --for=condition=Ready --timeout=600s          
 |