mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2025-01-24 14:04:01 +08:00
添加spark serverless支持
This commit is contained in:
parent
adecf1e347
commit
92909f194e
@ -1,27 +1,8 @@
|
||||
# 所需要的所有镜像
|
||||
kubeflow = [
|
||||
'gcr.io/kubeflow-images-public/xgboost-operator:vmaster-g56c2c075',
|
||||
'gcr.io/ml-pipeline/metadata-writer:1.0.4', 'gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.1',
|
||||
'gcr.io/ml-pipeline/envoy:metadata-grpc', 'mysql:5.7','argoproj/argoui:v2.3.0',
|
||||
'gcr.io/istio-release/proxy_init:release-1.3-latest-daily',
|
||||
'gcr.io/istio-release/kubectl:release-1.3-latest-daily', 'gcr.io/google_containers/spartakus-amd64:v1.1.0',
|
||||
'gcr.io/istio-release/proxyv2:release-1.3-latest-daily', 'mpioperator/mpi-operator:latest',"mpioperator/kubectl-delivery:latest",
|
||||
'gcr.io/kubeflow-images-public/admission-webhook:vmaster-ge5452b6f',
|
||||
'gcr.io/kubeflow-images-public/tf_operator:vmaster-gda226016', 'istio/proxyv2:1.3.1',
|
||||
'gcr.io/istio-release/galley:release-1.3-latest-daily', 'quay.io/jetstack/cert-manager-cainjector:v0.11.0',
|
||||
'gcr.io/istio-release/citadel:release-1.3-latest-daily', 'python:3.7',
|
||||
'gcr.io/istio-release/mixer:release-1.3-latest-daily', 'gcr.io/istio-release/pilot:release-1.3-latest-daily',
|
||||
'gcr.io/spark-operator/spark-operator:v1beta2-1.1.0-2.4.5', 'gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0',
|
||||
'gcr.io/istio-release/sidecar_injector:release-1.3-latest-daily',
|
||||
'quay.io/jetstack/cert-manager-webhook:v0.11.0',
|
||||
'gcr.io/kubeflow-images-public/kubernetes-sigs/application:1.0-beta',
|
||||
'gcr.io/kubeflow-images-public/xgboost-operator:v0.1.0', 'quay.io/jetstack/cert-manager-controller:v0.11.0',
|
||||
'gcr.io/istio-release/node-agent-k8s:release-1.3-latest-daily',
|
||||
'gcr.io/kubeflow-images-public/pytorch-operator:vmaster-g518f9c76', 'metacontroller/metacontroller:v0.3.0',
|
||||
'prom/prometheus:v2.8.0', 'gcr.io/kubeflow-images-public/kfam:vmaster-g9f3bfd00',
|
||||
'kubeflow/mxnet-operator:v1.0.0-20200625',
|
||||
'gcr.io/kubeflow-images-public/profile-controller:vmaster-ga49f658f',
|
||||
'gcr.io/kubeflow-images-public/ingress-setup:latest',
|
||||
'mysql:5.7',
|
||||
'gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0',
|
||||
'metacontroller/metacontroller:v0.3.0',
|
||||
'alpine:3.10',
|
||||
"busybox"
|
||||
]
|
||||
@ -160,7 +141,8 @@ cube_studio = [
|
||||
'ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7',
|
||||
'ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.6',
|
||||
'ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.7',
|
||||
'ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8'
|
||||
'ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8',
|
||||
'ccr.ccs.tencentyun.com/cube-studio/spark-operator:v1beta2-1.3.7-3.1.1'
|
||||
]
|
||||
|
||||
images = kubeflow + kubernetes_dashboard + new_pipline + new_gpu + new_prometheus + new_serving + volcano + kube_batch + nni+ cube_studio
|
||||
@ -172,6 +154,9 @@ images = list(set(images))
|
||||
HOST = 'ccr.ccs.tencentyun.com/cube-studio/'
|
||||
for image in images:
|
||||
# print(image)
|
||||
if 'gpu' in image:
|
||||
continue
|
||||
|
||||
image = image.replace('<none>', '')
|
||||
image_name = HOST + image.replace(HOST,'').replace('/', '-').replace('@sha256', '')
|
||||
|
||||
|
@ -1,342 +1,196 @@
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0 tensorflow/serving:2.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-profile-controller:vmaster-ga49f658f
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-profile-controller:vmaster-ga49f658f gcr.io/kubeflow-images-public/profile-controller:vmaster-ga49f658f
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-alibi-explainer:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-alibi-explainer:0.2.2 gcr.io/kfserving/alibi-explainer:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-rbac-proxy:v0.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-rbac-proxy:v0.3.1 quay.io/coreos/kube-rbac-proxy:v0.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-scheduledworkflow:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-scheduledworkflow:1.6.0 gcr.io/ml-pipeline/scheduledworkflow:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.8 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-tf_operator:vmaster-gda226016
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-tf_operator:vmaster-gda226016 gcr.io/kubeflow-images-public/tf_operator:vmaster-gda226016
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubesigs-kube-batch:v0.5
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubesigs-kube-batch:v0.5 kubesigs/kube-batch:v0.5
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.46.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.46.0 quay.io/prometheus-operator/prometheus-config-reloader:v0.46.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0 tensorflow/serving:2.2.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.6
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.6 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.6
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nni:20211003
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nni:20211003 ccr.ccs.tencentyun.com/cube-studio/nni:20211003
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-proxyv2:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-proxyv2:release-1.3-latest-daily gcr.io/istio-release/proxyv2:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-api-server:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-api-server:1.6.0 gcr.io/ml-pipeline/api-server:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-gpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-gpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-gpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.8 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.8 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101 ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-pilot:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-pilot:release-1.3-latest-daily gcr.io/istio-release/pilot:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-visualization-server:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-visualization-server:1.6.0 gcr.io/ml-pipeline/visualization-server:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-knative-releases-knative.dev-serving-cmd-queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-knative-releases-knative.dev-serving-cmd-queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb gcr.io/knative-releases/knative.dev/serving/cmd/queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.6
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.6 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.6
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1 ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-envoy:metadata-grpc
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-envoy:metadata-grpc gcr.io/ml-pipeline/envoy:metadata-grpc
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.12.9-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.12.9-license-compliance gcr.io/ml-pipeline/argoexec:v2.12.9-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.56.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.56.1 quay.io/prometheus-operator/prometheus-operator:v0.56.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-gpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.0.13-2.1.2-ubuntu20.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.0.13-2.1.2-ubuntu20.04 nvidia/dcgm-exporter:2.0.13-2.1.2-ubuntu20.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-alertmanager:v0.15.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-alertmanager:v0.15.0 quay.io/prometheus/alertmanager:v0.15.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-workflow-controller:v2.12.9-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-workflow-controller:v2.12.9-license-compliance gcr.io/ml-pipeline/workflow-controller:v2.12.9-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-logger:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-logger:0.2.2 gcr.io/kfserving/logger:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ ccr.ccs.tencentyun.com/cube-studio/
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0 tensorflow/serving:1.11.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-webhook-manager:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-webhook-manager:v1.4.0 volcanosh/vc-webhook-manager:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/horovod:20210401
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/horovod:20210401 ccr.ccs.tencentyun.com/cube-studio/horovod:20210401
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-mixer:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-mixer:release-1.3-latest-daily gcr.io/istio-release/mixer:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.27.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.27.1 quay.io/prometheus/prometheus:v2.27.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcano:20211001
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcano:20211001 ccr.ccs.tencentyun.com/cube-studio/volcano:20211001
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.8 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010 ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-kubernetes-ingress-controller-nginx-ingress-controller:0.30.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-kubernetes-ingress-controller-nginx-ingress-controller:0.30.0 quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.30.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/metacontroller-metacontroller:v0.3.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/metacontroller-metacontroller:v0.3.0 metacontroller/metacontroller:v0.3.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0 tensorflow/serving:1.14.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-proxy_init:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-proxy_init:release-1.3-latest-daily gcr.io/istio-release/proxy_init:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-galley:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-galley:release-1.3-latest-daily gcr.io/istio-release/galley:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/deploy-service:20211001ubuntu-gpu:cuda11.0.3-cudnn8
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/deploy-service:20211001ubuntu-gpu:cuda11.0.3-cudnn8 ccr.ccs.tencentyun.com/cube-studio/deploy-service:20211001ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-xgboost-operator:v0.1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-xgboost-operator:v0.1.0 gcr.io/kubeflow-images-public/xgboost-operator:v0.1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-sidecar_injector:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-sidecar_injector:release-1.3-latest-daily gcr.io/istio-release/sidecar_injector:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-node-agent-k8s:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-node-agent-k8s:release-1.3-latest-daily gcr.io/istio-release/node-agent-k8s:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0 tensorflow/serving:2.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.3.1 quay.io/prometheus/prometheus:v2.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0 ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-controller-manager:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-controller-manager:v1.4.0 volcanosh/vc-controller-manager:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:v0.21.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:v0.21.1 gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-viewer-crd-controller:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-viewer-crd-controller:1.6.0 gcr.io/ml-pipeline/viewer-crd-controller:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/frameworkcontrolle-frameworkcontrolle
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/frameworkcontrolle-frameworkcontrolle frameworkcontrolle/frameworkcontrolle
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu:18.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu:18.04 ubuntu:18.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.0.4
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.0.4 gcr.io/ml-pipeline/metadata-writer:1.0.4
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.6.0 gcr.io/ml-pipeline/metadata-writer:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.56.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.56.1 quay.io/prometheus-operator/prometheus-config-reloader:v0.56.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0-gpu tensorflow/serving:2.0.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-xgboost-operator:vmaster-g56c2c075
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-xgboost-operator:vmaster-g56c2c075 gcr.io/kubeflow-images-public/xgboost-operator:vmaster-g56c2c075
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-envoy:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-envoy:1.6.0 gcr.io/ml-pipeline/metadata-envoy:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ray:gpu-20210601
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ray:gpu-20210601 ccr.ccs.tencentyun.com/cube-studio/ray:gpu-20210601
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-node-exporter:v0.15.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-node-exporter:v0.15.2 quay.io/prometheus/node-exporter:v0.15.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.3.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.3.0-gpu tensorflow/serving:2.3.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0-gpu tensorflow/serving:2.4.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/busybox
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/busybox busybox
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-kfam:vmaster-g9f3bfd00
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-kfam:vmaster-g9f3bfd00 gcr.io/kubeflow-images-public/kfam:vmaster-g9f3bfd00
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mcr.microsoft.com-onnxruntime-server:v0.5.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mcr.microsoft.com-onnxruntime-server:v0.5.1 mcr.microsoft.com/onnxruntime/server:v0.5.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-state-metrics:v1.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-state-metrics:v1.3.1 quay.io/coreos/kube-state-metrics:v1.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0-gpu tensorflow/serving:2.2.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/alpine:3.10
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/alpine:3.10 alpine:3.10
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-frontend:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-frontend:1.6.0 gcr.io/ml-pipeline/frontend:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-minio:RELEASE.2019-08-14T20-37-41Z-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-minio:RELEASE.2019-08-14T20-37-41Z-license-compliance gcr.io/ml-pipeline/minio:RELEASE.2019-08-14T20-37-41Z-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-kubectl:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-kubectl:release-1.3-latest-daily gcr.io/istio-release/kubectl:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-google_containers-spartakus-amd64:v1.1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-google_containers-spartakus-amd64:v1.1.0 gcr.io/google_containers/spartakus-amd64:v1.1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-controller:v0.11.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-controller:v0.11.0 quay.io/jetstack/cert-manager-controller:v0.11.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-gpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-gpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-gpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-pytorchserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-pytorchserver:0.2.2 gcr.io/kfserving/pytorchserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubernetesui-dashboard:v2.2.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubernetesui-dashboard:v2.2.0 kubernetesui/dashboard:v2.2.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mpioperator-mpi-operator:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mpioperator-mpi-operator:latest mpioperator/mpi-operator:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvcr.io-nvidia-tensorrtserver:19.05-py3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvcr.io-nvidia-tensorrtserver:19.05-py3 nvcr.io/nvidia/tensorrtserver:19.05-py3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3 ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0-gpu tensorflow/serving:2.1.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.13.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.13.0-gpu tensorflow/serving:1.13.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2 ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-spark-operator-spark-operator:v1beta2-1.1.0-2.4.5
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-spark-operator-spark-operator:v1beta2-1.1.0-2.4.5 gcr.io/spark-operator/spark-operator:v1beta2-1.1.0-2.4.5
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-pod-gpu-metrics-exporter:v1.0.0-alpha
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-pod-gpu-metrics-exporter:v1.0.0-alpha nvidia/pod-gpu-metrics-exporter:v1.0.0-alpha
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubebuilder-kube-rbac-proxy:v0.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubebuilder-kube-rbac-proxy:v0.4.0 gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.7.5-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.7.5-license-compliance gcr.io/ml-pipeline/argoexec:v2.7.5-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-k8s-device-plugin:v0.7.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-k8s-device-plugin:v0.7.1 nvidia/k8s-device-plugin:v0.7.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-sklearnserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-sklearnserver:0.2.2 gcr.io/kfserving/sklearnserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mpioperator-kubectl-delivery:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mpioperator-kubectl-delivery:latest mpioperator/kubectl-delivery:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-citadel:release-1.3-latest-daily
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-istio-release-citadel:release-1.3-latest-daily gcr.io/istio-release/citadel:release-1.3-latest-daily
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/istio-proxyv2:1.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/istio-proxyv2:1.3.1 istio/proxyv2:1.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.48.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.48.0 quay.io/prometheus-operator/prometheus-config-reloader:v0.48.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-gpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1 ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubeflow-mxnet-operator:v1.0.0-20200625
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubeflow-mxnet-operator:v1.0.0-20200625 kubeflow/mxnet-operator:v1.0.0-20200625
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-persistenceagent:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-persistenceagent:1.6.0 gcr.io/ml-pipeline/persistenceagent:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-storage-initializer:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-storage-initializer:0.2.2 gcr.io/kfserving/storage-initializer:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubernetesui-metrics-scraper:v1.0.6
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubernetesui-metrics-scraper:v1.0.6 kubernetesui/metrics-scraper:v1.0.6
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/argoproj-argoui:v2.3.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/argoproj-argoui:v2.3.0 argoproj/argoui:v2.3.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-scheduler:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-scheduler:v1.4.0 volcanosh/vc-scheduler:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-addon-resizer:1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-addon-resizer:1.0 quay.io/coreos/addon-resizer:1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/grafana-grafana:7.5.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/grafana-grafana:7.5.2 grafana/grafana:7.5.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3 ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-cainjector:v0.11.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-cainjector:v0.11.0 quay.io/jetstack/cert-manager-cainjector:v0.11.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.6
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.6 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.6
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-ingress-setup:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-ingress-setup:latest gcr.io/kubeflow-images-public/ingress-setup:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:0.30.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:0.30.0 gcr.io/tfx-oss-public/ml_metadata_store_server:0.30.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0-gpu tensorflow/serving:1.14.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-webhook:v0.11.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-jetstack-cert-manager-webhook:v0.11.0 quay.io/jetstack/cert-manager-webhook:v0.11.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-kubernetes-sigs-application:1.0-beta
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-kubernetes-sigs-application:1.0-beta gcr.io/kubeflow-images-public/kubernetes-sigs/application:1.0-beta
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0 ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0-gpu tensorflow/serving:1.12.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mysql:5.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mysql:5.7 mysql:5.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0-gpu tensorflow/serving:1.11.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-xgbserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-xgbserver:0.2.2 gcr.io/kfserving/xgbserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-admission-webhook:vmaster-ge5452b6f
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-admission-webhook:vmaster-ge5452b6f gcr.io/kubeflow-images-public/admission-webhook:vmaster-ge5452b6f
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1 ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601 ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7 ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0 tensorflow/serving:1.12.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.46.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.46.0 quay.io/prometheus-operator/prometheus-operator:v0.46.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0 tensorflow/serving:2.1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.3.1-2.6.1-ubuntu20.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.3.1-2.6.1-ubuntu20.04 nvidia/dcgm-exporter:2.3.1-2.6.1-ubuntu20.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-knative-releases-knative.dev-serving-cmd-queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-knative-releases-knative.dev-serving-cmd-queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb gcr.io/knative-releases/knative.dev/serving/cmd/queue:792f6945c7bc73a49a470a5b955c39c8bd174705743abf5fb71aa0f4c04128eb
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-writer:1.6.0 gcr.io/ml-pipeline/metadata-writer:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcano:20211001
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcano:20211001 ccr.ccs.tencentyun.com/cube-studio/volcano:20211001
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-scheduledworkflow:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-scheduledworkflow:1.6.0 gcr.io/ml-pipeline/scheduledworkflow:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:vscode-ubuntu-cpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf_model_offline_predict:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf_model_offline_predict:latest ccr.ccs.tencentyun.com/cube-studio/tf_model_offline_predict:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-pytorch-operator:vmaster-g518f9c76
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubeflow-images-public-pytorch-operator:vmaster-g518f9c76 gcr.io/kubeflow-images-public/pytorch-operator:vmaster-g518f9c76
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010 ccr.ccs.tencentyun.com/cube-studio/pytorch_distributed_train_k8s:20201010
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3 ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.09-py3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.7.5-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.7.5-license-compliance gcr.io/ml-pipeline/argoexec:v2.7.5-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-frontend:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-frontend:1.6.0 gcr.io/ml-pipeline/frontend:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/spark-operator:v1beta2-1.3.7-3.1.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/spark-operator:v1beta2-1.3.7-3.1.1 ccr.ccs.tencentyun.com/cube-studio/spark-operator:v1beta2-1.3.7-3.1.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:0.30.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-tfx-oss-public-ml_metadata_store_server:0.30.0 gcr.io/tfx-oss-public/ml_metadata_store_server:0.30.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.56.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.56.1 quay.io/prometheus-operator/prometheus-operator:v0.56.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest-cuda
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3 ccr.ccs.tencentyun.com/cube-studio/tritonserver:21.12-py3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-api-server:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-api-server:1.6.0 gcr.io/ml-pipeline/api-server:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/datax:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/datax:latest ccr.ccs.tencentyun.com/cube-studio/datax:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-controller-manager:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-controller-manager:v1.4.0 volcanosh/vc-controller-manager:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1 ccr.ccs.tencentyun.com/cube-studio/object_detection_on_darknet:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_model_evaluation:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nni:20211003
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nni:20211003 ccr.ccs.tencentyun.com/cube-studio/nni:20211003
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/alpine:3.10
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/alpine:3.10 alpine:3.10
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubernetesui-metrics-scraper:v1.0.6
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubernetesui-metrics-scraper:v1.0.6 kubernetesui/metrics-scraper:v1.0.6
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/ubuntu:18.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ubuntu:18.04 ubuntu:18.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.4.0 tensorflow/serving:2.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.11.0 tensorflow/serving:1.11.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/frameworkcontrolle-frameworkcontrolle
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/frameworkcontrolle-frameworkcontrolle frameworkcontrolle/frameworkcontrolle
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/horovod:20210401
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/horovod:20210401 ccr.ccs.tencentyun.com/cube-studio/horovod:20210401
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.3.1-2.6.1-ubuntu20.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.3.1-2.6.1-ubuntu20.04 nvidia/dcgm-exporter:2.3.1-2.6.1-ubuntu20.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-envoy:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-metadata-envoy:1.6.0 gcr.io/ml-pipeline/metadata-envoy:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest ccr.ccs.tencentyun.com/cube-studio/onnxruntime:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-alertmanager:v0.15.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-alertmanager:v0.15.0 quay.io/prometheus/alertmanager:v0.15.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.1.0 tensorflow/serving:2.1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-visualization-server:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-visualization-server:1.6.0 gcr.io/ml-pipeline/visualization-server:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.5.0-cpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-kubernetes-ingress-controller-nginx-ingress-controller:0.30.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-kubernetes-ingress-controller-nginx-ingress-controller:0.30.0 quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.30.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_keras_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-rbac-proxy:v0.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-rbac-proxy:v0.3.1 quay.io/coreos/kube-rbac-proxy:v0.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/busybox
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/busybox busybox
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-workflow-controller:v2.12.9-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-workflow-controller:v2.12.9-license-compliance gcr.io/ml-pipeline/workflow-controller:v2.12.9-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-pytorchserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-pytorchserver:0.2.2 gcr.io/kfserving/pytorchserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2 ccr.ccs.tencentyun.com/cube-studio/kaldi_distributed_on_volcano:v2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mcr.microsoft.com-onnxruntime-server:v0.5.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mcr.microsoft.com-onnxruntime-server:v0.5.1 mcr.microsoft.com/onnxruntime/server:v0.5.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-state-metrics:v1.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-kube-state-metrics:v1.3.1 quay.io/coreos/kube-state-metrics:v1.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-addon-resizer:1.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-coreos-addon-resizer:1.0 quay.io/coreos/addon-resizer:1.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-node-exporter:v0.15.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-node-exporter:v0.15.2 quay.io/prometheus/node-exporter:v0.15.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-xgbserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-xgbserver:0.2.2 gcr.io/kfserving/xgbserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest ccr.ccs.tencentyun.com/cube-studio/tf_distributed_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.48.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.48.0 quay.io/prometheus-operator/prometheus-config-reloader:v0.48.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.1.4
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.0.0 tensorflow/serving:2.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest ccr.ccs.tencentyun.com/cube-studio/tf2.3_plain_train:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/grafana-grafana:7.5.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/grafana-grafana:7.5.2 grafana/grafana:7.5.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601 ccr.ccs.tencentyun.com/cube-studio/video-audio:20210601
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/ ccr.ccs.tencentyun.com/cube-studio/
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubesigs-kube-batch:v0.5
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubesigs-kube-batch:v0.5 kubesigs/kube-batch:v0.5
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/metacontroller-metacontroller:v0.3.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/metacontroller-metacontroller:v0.3.0 metacontroller/metacontroller:v0.3.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-viewer-crd-controller:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-viewer-crd-controller:1.6.0 gcr.io/ml-pipeline/viewer-crd-controller:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.4.3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.27.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.27.1 quay.io/prometheus/prometheus:v2.27.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.46.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-operator:v0.46.0 quay.io/prometheus-operator/prometheus-operator:v0.46.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/mysql:5.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/mysql:5.7 mysql:5.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-persistenceagent:1.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-persistenceagent:1.6.0 gcr.io/ml-pipeline/persistenceagent:1.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-minio:RELEASE.2019-08-14T20-37-41Z-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-minio:RELEASE.2019-08-14T20-37-41Z-license-compliance gcr.io/ml-pipeline/minio:RELEASE.2019-08-14T20-37-41Z-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-base
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-alibi-explainer:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-alibi-explainer:0.2.2 gcr.io/kfserving/alibi-explainer:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu ccr.ccs.tencentyun.com/cube-studio/torchserve:0.4.2-cpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-scheduler:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-scheduler:v1.4.0 volcanosh/vc-scheduler:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-webhook-manager:v1.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcanosh-vc-webhook-manager:v1.4.0 volcanosh/vc-webhook-manager:v1.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101 ccr.ccs.tencentyun.com/cube-studio/volcano:offline-predict-20220101
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-sklearnserver:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-sklearnserver:0.2.2 gcr.io/kfserving/sklearnserver:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.56.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.56.1 quay.io/prometheus-operator/prometheus-config-reloader:v0.56.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.13.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.13.0 tensorflow/serving:1.13.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0-gpu
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0-gpu ccr.ccs.tencentyun.com/cube-studio/tfserving:1.14.0-gpu
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.3.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.3.0 tensorflow/serving:2.3.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/python:3.7
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/python:3.7 python:3.7
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/prom-prometheus:v2.8.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/prom-prometheus:v2.8.0 prom/prometheus:v2.8.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.12.9-license-compliance
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-ml-pipeline-argoexec:v2.12.9-license-compliance gcr.io/ml-pipeline/argoexec:v2.12.9-license-compliance
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest ccr.ccs.tencentyun.com/cube-studio/tf_distributed_eval:latest
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-k8s-device-plugin:v0.7.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-k8s-device-plugin:v0.7.1 nvidia/k8s-device-plugin:v0.7.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubebuilder-kube-rbac-proxy:v0.4.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kubebuilder-kube-rbac-proxy:v0.4.0 gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.0.13-2.1.2-ubuntu20.04
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/nvidia-dcgm-exporter:2.0.13-2.1.2-ubuntu20.04 nvidia/dcgm-exporter:2.0.13-2.1.2-ubuntu20.04
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.3.4
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.3.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-prometheus:v2.3.1 quay.io/prometheus/prometheus:v2.3.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.2.3
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.6.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-storage-initializer:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-storage-initializer:0.2.2 gcr.io/kfserving/storage-initializer:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0 ccr.ccs.tencentyun.com/cube-studio/notebook:jupyter-ubuntu-cpu-1.0.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2 ccr.ccs.tencentyun.com/cube-studio/tfserving:2.5.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1 ccr.ccs.tencentyun.com/cube-studio/xgb_train_and_predict:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/kubernetesui-dashboard:v2.2.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/kubernetesui-dashboard:v2.2.0 kubernetesui/dashboard:v2.2.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1 ccr.ccs.tencentyun.com/cube-studio/sklearn_estimator:v1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-logger:0.2.2
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/gcr.io-kfserving-logger:0.2.2 gcr.io/kfserving/logger:0.2.2
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.14.0 tensorflow/serving:1.14.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/k8s.gcr.io-prometheus-adapter-prometheus-adapter:v0.9.1
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/k8s.gcr.io-prometheus-adapter-prometheus-adapter:v0.9.1 k8s.gcr.io/prometheus-adapter/prometheus-adapter:v0.9.1
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:1.12.0 tensorflow/serving:1.12.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/tensorflow-serving:2.2.0 tensorflow/serving:2.2.0
|
||||
docker pull ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.46.0
|
||||
docker tag ccr.ccs.tencentyun.com/cube-studio/quay.io-prometheus-operator-prometheus-config-reloader:v0.46.0 quay.io/prometheus-operator/prometheus-config-reloader:v0.46.0
|
||||
|
41
install/kubernetes/spark/demo.yaml
Normal file
41
install/kubernetes/spark/demo.yaml
Normal file
@ -0,0 +1,41 @@
|
||||
apiVersion: "sparkoperator.k8s.io/v1beta2"
|
||||
kind: SparkApplication
|
||||
metadata:
|
||||
name: spark-pi
|
||||
namespace: pipeline
|
||||
spec:
|
||||
type: Scala
|
||||
mode: cluster
|
||||
image: "ccr.ccs.tencentyun.com/cube-studio/spark-operator:spark-v3.1.1"
|
||||
imagePullPolicy: Always
|
||||
mainClass: org.apache.spark.examples.SparkPi
|
||||
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.1.1.jar"
|
||||
sparkVersion: "3.1.1"
|
||||
restartPolicy:
|
||||
type: Never
|
||||
volumes:
|
||||
- name: "test-volume"
|
||||
hostPath:
|
||||
path: "/tmp"
|
||||
type: Directory
|
||||
driver:
|
||||
cores: 1
|
||||
coreLimit: "1200m"
|
||||
memory: "512m"
|
||||
labels:
|
||||
version: 3.1.1
|
||||
serviceAccount: spark
|
||||
volumeMounts:
|
||||
- name: "test-volume"
|
||||
mountPath: "/tmp"
|
||||
executor:
|
||||
cores: 1
|
||||
instances: 1
|
||||
memory: "512m"
|
||||
labels:
|
||||
version: 3.1.1
|
||||
volumeMounts:
|
||||
- name: "test-volume"
|
||||
mountPath: "/tmp"
|
||||
|
||||
|
4711
install/kubernetes/spark/install.yaml
Normal file
4711
install/kubernetes/spark/install.yaml
Normal file
File diff suppressed because it is too large
Load Diff
1
install/kubernetes/spark/readme.md
Normal file
1
install/kubernetes/spark/readme.md
Normal file
@ -0,0 +1 @@
|
||||
helm template --set sparkJobNamespace=pipeline spark-operator spark-operator/spark-operator > install.yaml
|
@ -1,5 +1,5 @@
|
||||
|
||||
mkdir -p ~/.kube/ kubeconfig /data/k8s/kubeflow/pipeline/workspace /data/k8s/kubeflow/pipeline/archives
|
||||
mkdir -p ~/.kube/ kubeconfig /data/k8s/kubeflow/pipeline/workspace /data/k8s/kubeflow/pipeline/archives /data/k8s/infra/mysql
|
||||
cp config ~/.kube/config
|
||||
cp config kubeconfig/dev-kubeconfig
|
||||
|
||||
@ -92,43 +92,31 @@ kubectl apply -f gpu/dcgm-exporter.yaml
|
||||
kubectl apply -f gpu/dcgm-exporter-sm.yaml
|
||||
|
||||
# 部署frameworkcontroller
|
||||
kubectl create serviceaccount frameworkcontroller --namespace service
|
||||
kubectl create serviceaccount frameworkcontroller --namespace pipeline
|
||||
kubectl create serviceaccount frameworkcontroller --namespace katib
|
||||
kubectl create serviceaccount frameworkcontroller --namespace kubeflow
|
||||
kubectl create clusterrolebinding frameworkcontroller-service --clusterrole=cluster-admin --user=system:serviceaccount:service:frameworkcontroller
|
||||
kubectl create clusterrolebinding frameworkcontroller-pipeline --clusterrole=cluster-admin --user=system:serviceaccount:pipeline:frameworkcontroller
|
||||
kubectl create clusterrolebinding frameworkcontroller-katib --clusterrole=cluster-admin --user=system:serviceaccount:katib:frameworkcontroller
|
||||
kubectl create clusterrolebinding frameworkcontroller-kubeflow --clusterrole=cluster-admin --user=system:serviceaccount:kubeflow:frameworkcontroller
|
||||
kubectl create -f frameworkcontroller/frameworkcontroller-with-default-config.yaml
|
||||
kubectl wait crd/frameworks.frameworkcontroller.microsoft.com --for condition=established --timeout=60s
|
||||
|
||||
kubectl create serviceaccount frameworkbarrier --namespace service
|
||||
kubectl create serviceaccount frameworkbarrier --namespace pipeline
|
||||
kubectl create serviceaccount frameworkbarrier --namespace katib
|
||||
kubectl create serviceaccount frameworkbarrier --namespace kubeflow
|
||||
kubectl create clusterrole frameworkbarrier --verb=get,list,watch --resource=frameworks
|
||||
kubectl create clusterrolebinding frameworkbarrier-service --clusterrole=frameworkbarrier --user=system:serviceaccount:service:frameworkbarrier
|
||||
kubectl create clusterrolebinding frameworkbarrier-pipeline --clusterrole=frameworkbarrier --user=system:serviceaccount:pipeline:frameworkbarrier
|
||||
kubectl create clusterrolebinding frameworkbarrier-katib --clusterrole=frameworkbarrier --user=system:serviceaccount:katib:frameworkbarrier
|
||||
kubectl create clusterrolebinding frameworkbarrier-kubeflow --clusterrole=frameworkbarrier --user=system:serviceaccount:kubeflow:frameworkbarrier
|
||||
|
||||
|
||||
# 部署volcano
|
||||
kubectl delete -f volcano/volcano-development.yaml
|
||||
kubectl apply -f volcano/volcano-development.yaml
|
||||
kubectl wait crd/jobs.batch.volcano.sh --for condition=established --timeout=60s
|
||||
|
||||
# 部署kubeflow(训练框架+istio)
|
||||
kubectl apply -f kubeflow/sa-rbac.yaml
|
||||
|
||||
# 部署istio
|
||||
kubectl apply -f istio/install-crd.yaml
|
||||
kubectl wait crd/envoyfilters.networking.istio.io --for condition=established --timeout=60s
|
||||
kubectl apply -f istio/install.yaml
|
||||
|
||||
|
||||
# 部署kfp pipeline
|
||||
kubectl apply -f kubeflow/sa-rbac.yaml
|
||||
kubectl create -f kubeflow/pipeline/minio-pv-hostpath.yaml
|
||||
kubectl apply -f kubeflow/pipeline/minio-artifact-secret.yaml
|
||||
kubectl apply -f kubeflow/pipeline/pipeline-runner-rolebinding.yaml
|
||||
|
@ -101,7 +101,7 @@ function get_username() {
|
||||
if(!id)
|
||||
id='';
|
||||
content = username;
|
||||
src = id+" @TME Kubeflow";
|
||||
src = id+" @TME Cube-Studio";
|
||||
$(document).ready(function(){
|
||||
drawWaterMark({content:content,src:src});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user