Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update visualisation server to v2.2.0 #92

Merged
merged 2 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 25 additions & 8 deletions visualization-server/rockcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,41 +1,59 @@
# Dockerfile: https://github.com/kubeflow/pipelines/blob/2.0.5/backend/Dockerfile.visualization
# Based on: https://github.com/kubeflow/pipelines/blob/2.2.0/backend/Dockerfile.visualization
name: visualization-server
base: ubuntu@20.04
version: '2.0.5'
summary: ml-pipeline/visualization-server
description: |
ml-pipeline/visualization-server
https://github.com/kubeflow/pipelines/tree/master/backend
license: GPL-3.0
version: "2.2.0"
license: Apache-2.0
base: ubuntu@22.04
platforms:
amd64:
run-user: _daemon_
services:
vis-server:
override: replace
command: python3.8 /server.py
summary: "visualization server service"
startup: enabled
command: "python3 /server.py"

package-repositories:
- type: apt
ppa: deadsnakes/ppa
priority: always

parts:
security-team-requirement:
plugin: nil
override-build: |
mkdir -p ${CRAFT_PART_INSTALL}/usr/share/rocks
(echo "# os-release" && cat /etc/os-release && echo "# dpkg-query" && \
dpkg-query --root=${CRAFT_PROJECT_DIR}/../bundles/ubuntu-22.04/rootfs/ -f '${db:Status-Abbrev},${binary:Package},${Version},${source:Package},${Source:Version}\n' -W) \
> ${CRAFT_PART_INSTALL}/usr/share/rocks/dpkg.query

python:
plugin: python
source: https://github.com/kubeflow/pipelines.git
source-subdir: backend/src/apiserver/visualization
source-tag: 2.0.5
source-tag: 2.2.0
stage-packages:
# sync this python version to that in the tensorflow
# base image of Dockerfile.visualization. Also keep this
# in sync with PARTS_PYTHON_INTERPRETER below
- python3.8-venv
- python3.8-dev
python-requirements:
DnPlas marked this conversation as resolved.
Show resolved Hide resolved
- requirements.txt
build-environment:
- PARTS_PYTHON_INTERPRETER: python3.8

DnPlas marked this conversation as resolved.
Show resolved Hide resolved
python3-is-python3.8:
plugin: nil
override-build: |
# Ensure `python3` is an executable command in our primed image by making
# a symbolic link
mkdir -p $CRAFT_PART_INSTALL/usr/bin/
ln -s /usr/bin/python3.8 $CRAFT_PART_INSTALL/usr/bin/python3

gcloud:
plugin: nil
Expand All @@ -50,11 +68,10 @@ parts:
mkdir -p "${CRAFT_PART_INSTALL}"/usr/local/gcloud
tar -C "${CRAFT_PART_INSTALL}"/usr/local/gcloud -xf /tmp/google-cloud-sdk.tar.gz
"${CRAFT_PART_INSTALL}"/usr/local/gcloud/google-cloud-sdk/install.sh
cp backend/src/apiserver/visualization/server.py $CRAFT_PART_INSTALL

files:
plugin: nil
source: https://github.com/kubeflow/pipelines.git
source-tag: 2.0.5
source-tag: 2.2.0
override-build: |
cp -r backend/src/apiserver/visualization/* $CRAFT_PART_INSTALL
62 changes: 62 additions & 0 deletions visualization-server/tests/test_rock.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.

import random
import pytest
import string
import subprocess

from charmed_kubeflow_chisme.rock import CheckRock


@pytest.fixture()
def rock_test_env(tmpdir):
"""Yields a temporary directory and random docker container name, then cleans them up after."""
container_name = "".join(
[str(i) for i in random.choices(string.ascii_lowercase, k=8)]
)
yield tmpdir, container_name

try:
subprocess.run(["docker", "rm", container_name])
except Exception:
pass
# tmpdir fixture we use here should clean up the other files for us


@pytest.mark.abort_on_fail
def test_rock(rock_test_env):
"""Test rock."""
temp_dir, container_name = rock_test_env
check_rock = CheckRock("rockcraft.yaml")
rock_image = check_rock.get_name()
rock_version = check_rock.get_version()
LOCAL_ROCK_IMAGE = f"{rock_image}:{rock_version}"

# assert we have the expected files
subprocess.run(
[
"docker",
"run",
"--entrypoint",
"/bin/bash",
LOCAL_ROCK_IMAGE,
"-c",
"ls -la /server.py",
],
check=True,
)

# assert tensorflow is properly installed
subprocess.run(
[
"docker",
"run",
"--entrypoint",
"/bin/bash",
LOCAL_ROCK_IMAGE,
"-c",
"pip list | grep tensorflow || { echo 'TensorFlow is not installed'; exit 1; }",
],
check=True,
)
19 changes: 6 additions & 13 deletions visualization-server/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,19 @@ commands =

[testenv:sanity]
passenv = *
allowlist_externals =
echo
deps =
pytest
charmed-kubeflow-chisme
commands =
# TODO: Implement sanity tests
echo "WARNING: This is a placeholder test - no test is implemented here."
# run rock tests
pytest -s -v --tb native --show-capture=all --log-cli-level=INFO {posargs} {toxinidir}/tests

[testenv:integration]
passenv = *
allowlist_externals =
echo
bash
git
rm
tox
deps =
juju<4.0
pytest
pytest-operator
ops
commands =
# TODO: Implement integration tests here
echo "WARNING: This is a placeholder test - no test is implemented here."
# Below is commented out due to https://github.com/canonical/pipelines-rocks/issues/61
# we should remove above line and uncomment the below, once this is fixed.
Expand Down
Loading