Skip to content

Commit

Permalink
Remove yq install from prow scripts
Browse files Browse the repository at this point in the history
yq is now part of Krkn base image: krkn-chaos/krkn#450
  • Loading branch information
chaitanyaenr committed Jul 20, 2023
1 parent 33fb691 commit dd90a45
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Scenario | Description | Working
[Power Outages](docs/power-outages.md) | Shuts down the cluster for the specified duration and turns it back on to check the cluster health | :heavy_check_mark: |
[PVC disk fill](docs/pvc-scenarios.md) | Fills up a given PersistenVolumeClaim by creating a temp file on the PVC from a pod associated with it | :heavy_check_mark: |
[Network Chaos](docs/network-chaos.md) | Introduces network latency, packet loss, bandwidth restriction in the egress traffic of a Node's interface using tc and Netem | :heavy_check_mark: |
[Pod Network Chaos][docs/pod-network-chaos.md) | Introducs network chaos at pod level | :heavy_check_mark: |
[Pod Network Chaos](docs/pod-network-chaos.md) | Introducs network chaos at pod level | :heavy_check_mark: |


### Set Up
Expand Down
3 changes: 0 additions & 3 deletions prow/cpu-hog/prow_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ oc config view
echo "Printing node info"
for node in $(oc get nodes | awk 'NR!=1{print $1}'); do oc get node/$node -o yaml; done

# Install dependencies
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && chmod +x /usr/bin/yq

source node-cpu-hog/env.sh
source env.sh
source common_run.sh
Expand Down
3 changes: 0 additions & 3 deletions prow/memory-hog/prow_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ oc config view
echo "Printing node info"
for node in $(oc get nodes | awk 'NR!=1{print $1}'); do oc get node/$node -o yaml; done

# Install dependencies
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && chmod +x /usr/bin/yq

source node-memory-hog/env.sh
source env.sh
source common_run.sh
Expand Down

0 comments on commit dd90a45

Please sign in to comment.