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
37 changes: 0 additions & 37 deletions .drone.yml

This file was deleted.

8 changes: 7 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ jobs:
run: make build

- name: Validate
run: make validate
run: make validate

- name: Package
run: make package

- name: E2E Test
run: ./scripts/e2e
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Build and package
run: make

- name: Run E2E Tests
run: ./scripts/e2e

- name: Upload binary
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion pkg/controllers/chart/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const (
var (
commaRE = regexp.MustCompile(`\\*,`)
deletePolicy = metav1.DeletePropagationForeground
DefaultJobImage = "rancher/klipper-helm:v0.9.4-build20250113"
DefaultJobImage = "rancher/klipper-helm:v0.9.5-build20250306"
DefaultFailurePolicy = FailurePolicyReinstall
defaultBackOffLimit = ptr.To(int32(1000))

Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi
setup_k8s(){
# Drone launches each step in an isolated network. Check and see if there is another bridge network
# that is not the default bridge network. If so, use that network for the k3s node.
BRIDGE_NETWORKS=$(docker network ls --filter driver=bridge --format '{{.Name}}' | grep -v bridge)
BRIDGE_NETWORKS=$(docker network ls --filter driver=bridge --format '{{.Name}}' | grep -v bridge || true)
if [ -n "$BRIDGE_NETWORKS" ]; then
K3S_NODE_NETWORK=$(echo "$BRIDGE_NETWORKS" | head -n 1)
echo "Using network $K3S_NODE_NETWORK"
Expand Down