Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.43 KB

build-using-private-repo.md

File metadata and controls

61 lines (42 loc) · 1.43 KB

Build using private local repository

Prerequisites

  • Local Docker
  • Kubernetes cluster access
  • Private local repository setup in the cluster with local access

Prerequisite check

Ensure the prerequisites are in place and the correct ports available.

# Check that the private local registry works
(set -x && curl -X GET http://127.0.0.1:5000/v2/_catalog && \
        docker pull busybox && docker tag busybox 127.0.0.1:5000/busybox && \
        docker push 127.0.0.1:5000/busybox)

Updating components and redeploying into cluster

Basic process of how to test code changes in cluster.

  1. Stop seldon core if its running.
  2. Build and push the component that was updated or all components if necessary.
  3. Start seldon core.
  4. Deploy models.

Below are details to achieve this.

Building all components

Build all images and push to private local repository.

./build-all-private-repo
./push-all-private-repo

start/stop Seldon Core

./start-seldon-core-private-repo
./stop-seldon-core-private-repo

Building individual components

./cluster-manager/build-private-repo
./cluster-manager/push-private-repo

./api-frontend/build-private-repo
./api-frontend/push-private-repo

./engine/build-private-repo
./engine/push-private-repo