Skip to content

Commit

Permalink
Merge pull request #603 from spidernet-io/pr/welan/009
Browse files Browse the repository at this point in the history
v0.0.9
  • Loading branch information
weizhoublue committed Aug 21, 2022
2 parents e722b8b + da1cafe commit 3df4919
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.8
v0.0.9
4 changes: 2 additions & 2 deletions charts/spiderpool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ home: "https://spidernet-io.github.io/spiderpool"
# application or library
type: application
# no need to modify this version , CI will auto update it with /VERSION
version: v0.0.8
version: v0.0.9
# This field is informational, and has no impact on chart version calculations .
# Leaving it unquoted can lead to parsing issues in some cases
# no need to modify this version , CI will auto update it with /VERSION
appVersion: v0.0.8
appVersion: v0.0.9
kubeVersion: ">= 1.16.0-0"
description: ipam for kubernetes cni
sources:
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ifeq ($(INSTALL_MULTUS),true)
scripts/install-multus.sh $(E2E_CLUSTER_NAME) $(E2E_KUBECONFIG)
endif
-$(QUIET) kubectl --kubeconfig $(E2E_KUBECONFIG) delete namespace local-path-storage --force --timeout=10s &>/dev/null
- DNS_POD_LIST=` kubectl --kubeconfig $(E2E_KUBECONFIG) get pods --timeout=10s --no-headers -n kube-system --selector k8s-app=kube-dns --output jsonpath={.items[*].metadata.name} ` ; \
- DNS_POD_LIST=` kubectl --kubeconfig $(E2E_KUBECONFIG) get pods --no-headers -n kube-system --selector k8s-app=kube-dns --output jsonpath={.items[*].metadata.name} ` ; \
for POD in $${DNS_POD_LIST} ; do \
echo "restart coredns pod $${POD} " ; \
kubectl --kubeconfig $(E2E_KUBECONFIG) delete pod $${POD} -n kube-system --force --timeout=10s ; \
Expand Down
4 changes: 2 additions & 2 deletions test/scripts/debugEnv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ E2E_FILE_NAME="$3"
[ ! -f "$E2E_KUBECONFIG" ] && echo "error, could not find file $E2E_KUBECONFIG " && exit 1
echo "$CURRENT_FILENAME : E2E_KUBECONFIG $E2E_KUBECONFIG "

CONTROLLER_POD_LIST=$( kubectl get pods --no-headers --kubeconfig ${E2E_KUBECONFIG} --namespace kube-system --selector app.kubernetes.io/component=spiderpoolcontroller --output jsonpath={.items[*].metadata.name} )
AGENT_POD_LIST=$( kubectl get pods --no-headers --kubeconfig ${E2E_KUBECONFIG} --namespace kube-system --selector app.kubernetes.io/component=spiderpoolagent --output jsonpath={.items[*].metadata.name} )
CONTROLLER_POD_LIST=$( kubectl get pods --no-headers --kubeconfig ${E2E_KUBECONFIG} --namespace kube-system --selector app.kubernetes.io/component=spiderpool-controller --output jsonpath={.items[*].metadata.name} )
AGENT_POD_LIST=$( kubectl get pods --no-headers --kubeconfig ${E2E_KUBECONFIG} --namespace kube-system --selector app.kubernetes.io/component=spiderpool-agent --output jsonpath={.items[*].metadata.name} )
[ -z "$CONTROLLER_POD_LIST" ] && echo "error, failed to find any spider controller pod" && exit 1
[ -z "$AGENT_POD_LIST" ] && echo "error, failed to find any spider agent pod" && exit 1

Expand Down

0 comments on commit 3df4919

Please sign in to comment.