Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 966bd2b

Browse files
committed
Split Operator install and inspect steps
1 parent 746b472 commit 966bd2b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,17 @@ jobs:
209209
run: |
210210
kubectl config current-context
211211
kubectl get node
212-
- name: "Inspect Operator"
212+
- name: "Install Operator"
213213
run: |
214214
kubectl create namespace securecodebox-system
215215
kubectl create namespace integration-tests
216216
helm -n securecodebox-system install securecodebox-operator ./operator/ --wait
217+
- name: "Inspect Operator"
218+
run: |
219+
echo "Deployment in namspace 'securecodebox-system'"
220+
kubectl -n securecodebox-system get deployments
221+
echo "Deployment in namspace 'securecodebox-system'"
222+
kubectl -n securecodebox-system get pods
217223
- name: "Install Test Dependencies"
218224
run: |
219225
cd tests/integration/

0 commit comments

Comments
 (0)