Skip to content

Commit

Permalink
Add missing import to get values from yaml (#526)
Browse files Browse the repository at this point in the history
* Add missing import to get values from yaml

* Update Dockerfile

* Update Dockerfile-ppc64le

---------

Co-authored-by: Tullio Sebastiani <[email protected]>
  • Loading branch information
chaitanyaenr and tsebastiani authored Nov 7, 2023
1 parent 2111bab commit 94bec8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY --from=azure-cli /usr/local/bin/az /usr/bin/az
# Install dependencies
RUN yum install -y git python39 python3-pip jq gettext wget && \
python3.9 -m pip install -U pip && \
git clone https://github.com/redhat-chaos/krkn.git --branch v1.5.0 /root/kraken && \
git clone https://github.com/redhat-chaos/krkn.git --branch v1.5.1 /root/kraken && \
mkdir -p /root/.kube && cd /root/kraken && \
pip3.9 install -r requirements.txt && \
pip3.9 install virtualenv && \
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-ppc64le
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY --from=azure-cli /usr/local/bin/az /usr/bin/az
# Install dependencies
RUN yum install -y git python39 python3-pip jq gettext wget && \
python3.9 -m pip install -U pip && \
git clone https://github.com/redhat-chaos/krkn.git --branch v1.5.0 /root/kraken && \
git clone https://github.com/redhat-chaos/krkn.git --branch v1.5.1 /root/kraken && \
mkdir -p /root/.kube && cd /root/kraken && \
pip3.9 install -r requirements.txt && \
pip3.9 install virtualenv && \
Expand Down
2 changes: 2 additions & 0 deletions kraken/node_actions/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
from krkn_lib.k8s import KrknKubernetes
from krkn_lib.telemetry.k8s import KrknTelemetryKubernetes
from krkn_lib.models.telemetry import ScenarioTelemetry
from krkn_lib.utils.functions import get_yaml_item_value

node_general = False


Expand Down

0 comments on commit 94bec8d

Please sign in to comment.