mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-12 16:09:39 -05:00
fix verify test (#2424)
This commit is contained in:
parent
02c04f057f
commit
b35a042abd
4
.github/actions/e2e_verify/action.yml
vendored
4
.github/actions/e2e_verify/action.yml
vendored
@ -39,14 +39,14 @@ runs:
|
||||
|
||||
- name: Constellation verify
|
||||
shell: bash
|
||||
run: constellation verify --cluster-id $(jq -r ".clusterValues.clusterID" constellation-state.yaml) --force
|
||||
run: constellation verify --cluster-id $(yq -r ".clusterValues.clusterID" constellation-state.yaml) --force
|
||||
|
||||
- name: Verify all nodes
|
||||
shell: bash
|
||||
env:
|
||||
KUBECONFIG: ${{ inputs.kubeconfig }}
|
||||
run: |
|
||||
clusterID=$(jq -r ".clusterValues.clusterID" constellation-state.yaml)
|
||||
clusterID=$(yq -r ".clusterValues.clusterID" constellation-state.yaml)
|
||||
nodes=$(kubectl get nodes -o json | jq -r ".items[].metadata.name")
|
||||
|
||||
for node in $nodes ; do
|
||||
|
Loading…
Reference in New Issue
Block a user