diff --git a/build/ci/.deploy-k8s.yml b/build/ci/.deploy-k8s.yml index 8454470c78f8f6f61f62c090775926a08e1b02fd..ca2a8d39564b39e4b5508b9d2a779e1b950e9009 100644 --- a/build/ci/.deploy-k8s.yml +++ b/build/ci/.deploy-k8s.yml @@ -75,7 +75,9 @@ deploy:nightly:develop: - if: $CI_COMMIT_BRANCH == "develop" && $CI_NIGHTLY == "mainline" destroy:k8s: - image: bitnami/kubectl:latest + image: + name: bitnami/kubectl:latest + entrypoint: [""] rules: - if: $CI_PIPELINE_SOURCE == "merge_request_event" when: always diff --git a/test/integration/nucleusIntegration_test.go b/test/integration/nucleusIntegration_test.go index 4a5a29eebeb8d7acb0c0fdf7310314b83000694a..d1d3b91fb6dd0399f0b561d823d277f34c4c996f 100644 --- a/test/integration/nucleusIntegration_test.go +++ b/test/integration/nucleusIntegration_test.go @@ -250,7 +250,7 @@ func TestGnmi_SubscribeIntegration(t *testing.T) { if (subErr != nil) != wantErr { if !wantErr && subErr != nil { if subErr.Error() != "rpc error: code = Canceled desc = context canceled" { - t.Errorf("Subscribe() error = %v, wantErr %v", err, tt.wantErr) + t.Errorf("Subscribe() error = %v, wantErr %v", subErr, tt.wantErr) } } }