mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-26 00:35:19 -04:00
fix verify test (#2424)
This commit is contained in:
parent
02c04f057f
commit
b35a042abd
1 changed files with 2 additions and 2 deletions
4
.github/actions/e2e_verify/action.yml
vendored
4
.github/actions/e2e_verify/action.yml
vendored
|
@ -39,14 +39,14 @@ runs:
|
||||||
|
|
||||||
- name: Constellation verify
|
- name: Constellation verify
|
||||||
shell: bash
|
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
|
- name: Verify all nodes
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
KUBECONFIG: ${{ inputs.kubeconfig }}
|
KUBECONFIG: ${{ inputs.kubeconfig }}
|
||||||
run: |
|
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")
|
nodes=$(kubectl get nodes -o json | jq -r ".items[].metadata.name")
|
||||||
|
|
||||||
for node in $nodes ; do
|
for node in $nodes ; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue