-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): revert ci-test.sh changes
Signed-off-by: Abhinandan Purkait <[email protected]>
- Loading branch information
1 parent
a49c953
commit e8f29b3
Showing
1 changed file
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,24 @@ | |
# shellcheck disable=SC1128 | ||
#!/usr/bin/env bash | ||
Check failure on line 16 in ci/ci-test.sh GitHub Actions / lint
|
||
|
||
CSTOR_OPERATOR="https://raw.githubusercontent.com/openebs/cstor-operators/HEAD/deploy/cstor-operator.yaml" | ||
#OPENEBS_OPERATOR=https://raw.githubusercontent.com/openebs/openebs/HEAD/k8s/openebs-operator.yaml | ||
NDM_OPERATOR=https://raw.githubusercontent.com/openebs/cstor-operators/HEAD/deploy/ndm-operator.yaml | ||
CSTOR_RBAC=https://raw.githubusercontent.com/openebs/cstor-operators/HEAD/deploy/rbac.yaml | ||
CSTOR_OPERATOR=https://raw.githubusercontent.com/openebs/cstor-operators/HEAD/deploy/cstor-operator.yaml | ||
ALL_CRD=https://raw.githubusercontent.com/openebs/cstor-operators/HEAD/deploy/crds/all_cstor_crds.yaml | ||
|
||
kubectl apply -f "$CSTOR_OPERATOR" | ||
kubectl apply -f ./deploy/csi-operator.yaml | ||
CSI_OPERATOR="$GOPATH/src/github.com/openebs/cstor-csi/deploy/csi-operator.yaml" | ||
Check warning on line 24 in ci/ci-test.sh GitHub Actions / lint
|
||
SNAPSHOT_CLASS="$GOPATH/src/github.com/openebs/cstor-csi/deploy/snapshot-class.yaml" | ||
Check warning on line 25 in ci/ci-test.sh GitHub Actions / lint
|
||
|
||
#DST_PATH="$GOPATH/src/github.com/openebs" | ||
|
||
# Prepare env for runnging BDD tests | ||
# Minikube is already running | ||
kubectl apply -f $CSTOR_RBAC | ||
kubectl apply -f $NDM_OPERATOR | ||
kubectl apply -f $ALL_CRD | ||
kubectl apply -f $CSTOR_OPERATOR | ||
kubectl apply -f ./deploy/csi-operator.yaml | ||
kubectl apply -f ./deploy/snapshot-class.yaml | ||
|
||
function dumpCSINodeLogs() { | ||
|