Skip to content

Commit

Permalink
fix: updated oci images
Browse files Browse the repository at this point in the history
#109

Summary of changes:
- Updated OCI images to point to re-built images in dockerhub.
- Updated publish.sh to publish only limited list of images.
  • Loading branch information
Ivan Chvets committed Jan 26, 2023
1 parent 824f176 commit a6b113a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charms/jupyter-controller/metadata.yaml
Expand Up @@ -7,7 +7,7 @@ resources:
oci-image:
type: oci-image
description: 'Backing OCI image'
upstream-source: docker.io/kubeflownotebookswg/notebook-controller:v1.6.1
upstream-source: registry.hub.docker.com/charmedkubeflow/notebook-controller:v1.6.1
deployment:
type: stateless
service: omit
Expand Down
2 changes: 1 addition & 1 deletion charms/jupyter-ui/metadata.yaml
Expand Up @@ -8,7 +8,7 @@ resources:
oci-image:
type: oci-image
description: 'Backing OCI image'
upstream-source: docker.io/kubeflownotebookswg/jupyter-web-app:v1.6.1
upstream-source: registry.hub.docker.com/charmedkubeflow/jupyter-web-app:v1.6.1
requires:
ingress:
interface: ingress
Expand Down
2 changes: 1 addition & 1 deletion charms/jupyter-ui/requirements.in
@@ -1,7 +1,7 @@
ops
oci-image
charmed-kubeflow-chisme
lightkube-models==1.26.0.4
lightkube-models==1.25.4.4
pyyaml
serialized-data-interface<0.4
# Unittest will fail without pinning
2 changes: 1 addition & 1 deletion charms/jupyter-ui/requirements.txt
Expand Up @@ -36,7 +36,7 @@ jsonschema==3.2.0
# via serialized-data-interface
lightkube==0.12.0
# via charmed-kubeflow-chisme
lightkube-models==1.26.0.4
lightkube-models==1.25.4.4
# via
# -r requirements.in
# lightkube
Expand Down
12 changes: 7 additions & 5 deletions image-definitions/publish.sh
Expand Up @@ -26,11 +26,13 @@ echo "Tag: $TAG"
#IMAGE_LIST=($(docker image ls *:$TAG --format="{{.Repository}}:{{.Tag}}"))
# selected images that need to be published
IMAGE_LIST=(
"jupyter-scipy:v1.6.1"
"jupyter-pytorch-full:v1.6.1"
"jupyter-pytorch-cuda-full:v1.6.1"
"jupyter-tensorflow-full:v1.6.1"
"jupyter-tensorflow-cuda-full:v1.6.1"
"jupyter-scipy:$TAG"
"jupyter-pytorch-full:$TAG"
"jupyter-pytorch-cuda-full:$TAG"
"jupyter-tensorflow-full:$TAG"
"jupyter-tensorflow-cuda-full:$TAG"
"notebook-controller:$TAG"
"jupyter-web-app:$TAG"
)

echo $IMAGE_LIST
Expand Down

0 comments on commit a6b113a

Please sign in to comment.