Skip to content

Commit cdbf086

Browse files
Merge pull request #621 from paulovmr/RHOAIENG-9168
RHOAIENG-9168: Remove unused images from notebooks repo
2 parents 145a234 + ebf4daa commit cdbf086

File tree

26 files changed

+4
-32663
lines changed

26 files changed

+4
-32663
lines changed

.github/workflows/build-notebooks.yaml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -79,28 +79,6 @@
7979
},
8080
"secrets": "inherit"
8181
},
82-
"jupyter-trustyai-ubi8-python-3_8": {
83-
"needs": [
84-
"jupyter-datascience-ubi8-python-3_8"
85-
],
86-
"uses": "./.github/workflows/build-notebooks-TEMPLATE.yaml",
87-
"with": {
88-
"target": "jupyter-trustyai-ubi8-python-3.8",
89-
"github": "${{ toJSON(github) }}"
90-
},
91-
"secrets": "inherit"
92-
},
93-
"habana-jupyter-1_9_0-ubi8-python-3_8": {
94-
"needs": [
95-
"jupyter-datascience-ubi8-python-3_8"
96-
],
97-
"uses": "./.github/workflows/build-notebooks-TEMPLATE.yaml",
98-
"with": {
99-
"target": "habana-jupyter-1.9.0-ubi8-python-3.8",
100-
"github": "${{ toJSON(github) }}"
101-
},
102-
"secrets": "inherit"
103-
},
10482
"habana-jupyter-1_10_0-ubi8-python-3_8": {
10583
"needs": [
10684
"jupyter-datascience-ubi8-python-3_8"
@@ -112,17 +90,6 @@
11290
},
11391
"secrets": "inherit"
11492
},
115-
"habana-jupyter-1_11_0-ubi8-python-3_8": {
116-
"needs": [
117-
"jupyter-datascience-ubi8-python-3_8"
118-
],
119-
"uses": "./.github/workflows/build-notebooks-TEMPLATE.yaml",
120-
"with": {
121-
"target": "habana-jupyter-1.11.0-ubi8-python-3.8",
122-
"github": "${{ toJSON(github) }}"
123-
},
124-
"secrets": "inherit"
125-
},
12693
"habana-jupyter-1_13_0-ubi8-python-3_8": {
12794
"needs": [
12895
"jupyter-datascience-ubi8-python-3_8"

Makefile

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,11 @@ cuda-jupyter-minimal-ubi8-python-3.8: cuda-ubi8-python-3.8
9797
cuda-jupyter-datascience-ubi8-python-3.8: cuda-jupyter-minimal-ubi8-python-3.8
9898
$(call image,$@,jupyter/datascience/ubi8-python-3.8,$<)
9999

100-
# Build and push jupyter-trustyai-ubi8-python-3.8 image to the registry
101-
.PHONY: jupyter-trustyai-ubi8-python-3.8
102-
jupyter-trustyai-ubi8-python-3.8: jupyter-datascience-ubi8-python-3.8
103-
$(call image,$@,jupyter/trustyai/ubi8-python-3.8,$<)
104-
105-
# Build and push habana-jupyter-1.9.0-ubi8-python-3.8 image to the registry
106-
.PHONY: habana-jupyter-1.9.0-ubi8-python-3.8
107-
habana-jupyter-1.9.0-ubi8-python-3.8: jupyter-datascience-ubi8-python-3.8
108-
$(call image,$@,habana/1.9.0/ubi8-python-3.8,$<)
109-
110100
# Build and push habana-jupyter-1.10.0-ubi8-python-3.8 image to the registry
111101
.PHONY: habana-jupyter-1.10.0-ubi8-python-3.8
112102
habana-jupyter-1.10.0-ubi8-python-3.8: jupyter-datascience-ubi8-python-3.8
113103
$(call image,$@,habana/1.10.0/ubi8-python-3.8,$<)
114104

115-
# Build and push habana-jupyter-1.11.0-ubi8-python-3.8 image to the registry
116-
.PHONY: habana-jupyter-1.11.0-ubi8-python-3.8
117-
habana-jupyter-1.11.0-ubi8-python-3.8: jupyter-datascience-ubi8-python-3.8
118-
$(call image,$@,habana/1.11.0/ubi8-python-3.8,$<)
119-
120105
# Build and push habana-jupyter-1.13.0-ubi8-python-3.8 image to the registry
121106
.PHONY: habana-jupyter-1.13.0-ubi8-python-3.8
122107
habana-jupyter-1.13.0-ubi8-python-3.8: jupyter-datascience-ubi8-python-3.8
@@ -442,8 +427,6 @@ test-%: bin/kubectl
442427
$(call test_with_papermill,minimal,ubi8,python-3.8) \
443428
elif echo "$(FULL_NOTEBOOK_NAME)" | grep -q "datascience-ubi8"; then \
444429
$(MAKE) validate-ubi8-datascience -e FULL_NOTEBOOK_NAME=$(FULL_NOTEBOOK_NAME); \
445-
elif echo "$(FULL_NOTEBOOK_NAME)" | grep -q "trustyai-ubi8"; then \
446-
$(call test_with_papermill,trustyai,ubi8,python-3.8) \
447430
elif echo "$(FULL_NOTEBOOK_NAME)" | grep -q "anaconda"; then \
448431
echo "There is no test notebook implemented yet for Anaconda Notebook...." \
449432
else \
@@ -573,8 +556,11 @@ refresh-pipfilelock-files:
573556
cd jupyter/datascience/ubi9-python-3.9 && pipenv lock
574557
cd jupyter/pytorch/ubi9-python-3.9 && pipenv lock
575558
cd jupyter/tensorflow/ubi9-python-3.9 && pipenv lock
576-
cd jupyter/trustyai/ubi8-python-3.8 && pipenv lock
577559
cd jupyter/trustyai/ubi9-python-3.9 && pipenv lock
560+
cd habana/1.10.0/ubi8-python-3.8 && pipenv lock
561+
cd habana/1.13.0/ubi8-python-3.8 && pipenv lock
562+
cd runtimes/minimal/ubi8-python-3.8 && pipenv lock
563+
cd runtimes/minimal/ubi9-python-3.9 && pipenv lock
578564
cd runtimes/datascience/ubi8-python-3.8 && pipenv lock
579565
cd runtimes/datascience/ubi9-python-3.9 && pipenv lock
580566
cd runtimes/pytorch/ubi9-python-3.9 && pipenv lock

habana/1.11.0/ubi8-python-3.8/Dockerfile

Lines changed: 0 additions & 167 deletions
This file was deleted.

habana/1.11.0/ubi8-python-3.8/Pipfile

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)