Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/helm-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ jobs:
run: |
echo "::group::Verify Required Resources"
required_resources=(
"Namespace"
"ServiceAccount"
"PersistentVolumeClaim"
"ConfigMap"
Expand All @@ -128,6 +127,7 @@ jobs:
fi
done
echo "All required resources found"
echo "Note: Namespace is managed by Helm's --create-namespace flag"
echo "::endgroup::"

- name: Upload templates as artifacts
Expand Down
8 changes: 0 additions & 8 deletions deploy/helm/semantic-router/templates/namespace.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions deploy/helm/validate-chart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ required_files=(
"templates/deployment.yaml"
"templates/service.yaml"
"templates/configmap.yaml"
"templates/namespace.yaml"
"templates/pvc.yaml"
"templates/serviceaccount.yaml"
"templates/ingress.yaml"
Expand All @@ -146,7 +145,6 @@ echo ""
# Test 7: Validate generated resources
log_info "Validating generated Kubernetes resources..."
resource_types=(
"Namespace"
"ServiceAccount"
"PersistentVolumeClaim"
"ConfigMap"
Expand All @@ -162,6 +160,7 @@ for resource in "${resource_types[@]}"; do
exit 1
fi
done
log_info "Note: Namespace is managed by Helm's --create-namespace flag"
echo ""

# Test 8: Validate Chart.yaml
Expand Down
Loading