Skip to content

Commit

Permalink
Merge pull request opendatahub-io#667 from harshad16/remove-install-p…
Browse files Browse the repository at this point in the history
…ackage

RHOAIENG-11087 Fix: Remove install of package in bootstrapper as pre-installed
  • Loading branch information
harshad16 authored Aug 8, 2024
2 parents ae4e01f + d30b6e6 commit 1db71cc
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion runtimes/datascience/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/datascience/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/minimal/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/minimal/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/pytorch/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/pytorch/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/tensorflow/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/tensorflow/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down

0 comments on commit 1db71cc

Please sign in to comment.