mirror of
https://github.com/autistic-symposium/ml-quantum-tensorflow-py.git
synced 2025-05-12 11:32:19 -04:00
add config for kubeflow
This commit is contained in:
parent
e3103afe88
commit
ae72757665
3 changed files with 1804 additions and 0 deletions
70
Vagrantfile
vendored
Normal file
70
Vagrantfile
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
||||
# configures the configuration version (we support older styles for
|
||||
# backwards compatibility). Please don't change it unless you know what
|
||||
# you're doing.
|
||||
Vagrant.configure("2") do |config|
|
||||
# The most common configuration options are documented and commented below.
|
||||
# For a complete reference, please see the online documentation at
|
||||
# https://docs.vagrantup.com.
|
||||
|
||||
# Every Vagrant development environment requires a box. You can search for
|
||||
# boxes at https://vagrantcloud.com/search.
|
||||
config.vm.box = "arrikto/minikf"
|
||||
|
||||
# Disable automatic box update checking. If you disable this, then
|
||||
# boxes will only be checked for updates when the user runs
|
||||
# `vagrant box outdated`. This is not recommended.
|
||||
# config.vm.box_check_update = false
|
||||
|
||||
# Create a forwarded port mapping which allows access to a specific port
|
||||
# within the machine from a port on the host machine. In the example below,
|
||||
# accessing "localhost:8080" will access port 80 on the guest machine.
|
||||
# NOTE: This will enable public access to the opened port
|
||||
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
||||
|
||||
# Create a forwarded port mapping which allows access to a specific port
|
||||
# within the machine from a port on the host machine and only allow access
|
||||
# via 127.0.0.1 to disable public access
|
||||
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
|
||||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
# using a specific IP.
|
||||
# config.vm.network "private_network", ip: "192.168.33.10"
|
||||
|
||||
# Create a public network, which generally matched to bridged network.
|
||||
# Bridged networks make the machine appear as another physical device on
|
||||
# your network.
|
||||
# config.vm.network "public_network"
|
||||
|
||||
# Share an additional folder to the guest VM. The first argument is
|
||||
# the path on the host to the actual folder. The second argument is
|
||||
# the path on the guest to mount the folder. And the optional third
|
||||
# argument is a set of non-required options.
|
||||
# config.vm.synced_folder "../data", "/vagrant_data"
|
||||
|
||||
# Provider-specific configuration so you can fine-tune various
|
||||
# backing providers for Vagrant. These expose provider-specific options.
|
||||
# Example for VirtualBox:
|
||||
#
|
||||
# config.vm.provider "virtualbox" do |vb|
|
||||
# # Display the VirtualBox GUI when booting the machine
|
||||
# vb.gui = true
|
||||
#
|
||||
# # Customize the amount of memory on the VM:
|
||||
# vb.memory = "1024"
|
||||
# end
|
||||
#
|
||||
# View the documentation for the provider you are using for more
|
||||
# information on available options.
|
||||
|
||||
# Enable provisioning with a shell script. Additional provisioners such as
|
||||
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
|
||||
# documentation for more information about their specific syntax and use.
|
||||
# config.vm.provision "shell", inline: <<-SHELL
|
||||
# apt-get update
|
||||
# apt-get install -y apache2
|
||||
# SHELL
|
||||
end
|
245
kubeflow/config.yaml
Normal file
245
kubeflow/config.yaml
Normal file
|
@ -0,0 +1,245 @@
|
|||
# This is the config to install Kubeflow on an existing k8s cluster.
|
||||
# If the cluster already has istio, comment out the istio install part below.
|
||||
|
||||
apiVersion: kfdef.apps.kubeflow.org/v1alpha1
|
||||
kind: KfDef
|
||||
metadata:
|
||||
name: kubeflow_app
|
||||
namespace: kubeflow
|
||||
spec:
|
||||
repos:
|
||||
- name: manifests
|
||||
uri: https://github.com/kubeflow/manifests/archive/56e2fb15db286198f7a53723cb1fbfecf3fe83fb.tar.gz
|
||||
- name: kubeflow
|
||||
uri: https://github.com/kubeflow/kubeflow/archive/0dbd2550372c003ba69069aeee283bd59fb1341f.tar.gz
|
||||
applications:
|
||||
# Istio install. If not needed, comment out istio-crds and istio-install.
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- name: namespace
|
||||
value: istio-system
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: istio/istio-crds
|
||||
name: istio-crds
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- name: namespace
|
||||
value: istio-system
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: istio/istio-install
|
||||
name: istio-install
|
||||
# This component is the istio resources for Kubeflow (e.g. gateway), not about installing istio.
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- name: clusterRbacConfig
|
||||
value: "OFF"
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: istio/istio
|
||||
name: istio
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: application/application-crds
|
||||
name: application-crds
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- application
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: application/application
|
||||
name: application
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: metacontroller
|
||||
name: metacontroller
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: argo
|
||||
name: argo
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: common/centraldashboard
|
||||
name: centraldashboard
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: admission-webhook/bootstrap
|
||||
name: bootstrap
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: admission-webhook/webhook
|
||||
name: webhook
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
- application
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: jupyter/jupyter-web-app
|
||||
name: jupyter-web-app
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/katib-db
|
||||
name: katib-db
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/katib-manager
|
||||
name: katib-manager
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/katib-controller
|
||||
name: katib-controller
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/katib-ui
|
||||
name: katib-ui # Issue: https://github.com/kubeflow/manifests/issues/151
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: metadata
|
||||
name: metadata
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/metrics-collector
|
||||
name: metrics-collector
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: katib-v1alpha2/suggestion
|
||||
name: suggestion
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
- application
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: jupyter/notebook-controller
|
||||
name: notebook-controller
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pytorch-job/pytorch-job-crds
|
||||
name: pytorch-job-crds
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pytorch-job/pytorch-operator
|
||||
name: pytorch-operator
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- initRequired: true
|
||||
name: usageId
|
||||
value: <randomly-generated-id>
|
||||
- initRequired: true
|
||||
name: reportUsage
|
||||
value: "true"
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: common/spartakus
|
||||
name: spartakus
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: tensorboard
|
||||
name: tensorboard
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: tf-training/tf-job-operator
|
||||
name: tf-job-operator
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/api-service
|
||||
name: api-service
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- name: minioPvcName
|
||||
value: minio-pv-claim
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/minio
|
||||
name: minio
|
||||
- kustomizeConfig:
|
||||
parameters:
|
||||
- name: mysqlPvcName
|
||||
value: mysql-pv-claim
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/mysql
|
||||
name: mysql
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/persistent-agent
|
||||
name: persistent-agent
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/pipelines-runner
|
||||
name: pipelines-runner
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/pipelines-ui
|
||||
name: pipelines-ui
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/pipelines-viewer
|
||||
name: pipelines-viewer
|
||||
- kustomizeConfig:
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: pipeline/scheduledworkflow
|
||||
name: scheduledworkflow
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- istio
|
||||
parameters:
|
||||
- initRequired: true
|
||||
name: admin
|
||||
value: johnDoe@acme.com
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: profiles
|
||||
name: profiles
|
||||
- kustomizeConfig:
|
||||
overlays:
|
||||
- application
|
||||
repoRef:
|
||||
name: manifests
|
||||
path: seldon/seldon-core-operator
|
||||
name: seldon-core-operator
|
||||
enableApplications: true
|
||||
packageManager: kustomize
|
||||
skipInitProject: true
|
||||
useBasicAuth: false
|
||||
useIstio: true
|
||||
# version: SET_VERSION
|
1489
notebooks/vqt_qmhl.ipynb
Normal file
1489
notebooks/vqt_qmhl.ipynb
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue