* Remove metadata link from central dashboard * Enable central dashboard to use configmap * Regenerate tests
This commit is contained in:
parent
3e64b50a9c
commit
6794984104
|
|
@ -14,10 +14,6 @@ data:
|
||||||
{
|
{
|
||||||
"link": "/katib/",
|
"link": "/katib/",
|
||||||
"text": "Katib"
|
"text": "Katib"
|
||||||
},
|
|
||||||
{
|
|
||||||
"link": "/metadata/",
|
|
||||||
"text": "Artifact Store"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"externalLinks": [],
|
"externalLinks": [],
|
||||||
|
|
@ -41,11 +37,6 @@ data:
|
||||||
"text": "View Katib Experiments",
|
"text": "View Katib Experiments",
|
||||||
"desc": "Katib",
|
"desc": "Katib",
|
||||||
"link": "/katib/"
|
"link": "/katib/"
|
||||||
},
|
|
||||||
{
|
|
||||||
"text": "View Metadata Artifacts",
|
|
||||||
"desc": "Artifact Store",
|
|
||||||
"link": "/metadata/"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"documentationItems": [
|
"documentationItems": [
|
||||||
|
|
@ -88,4 +79,4 @@ data:
|
||||||
}
|
}
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: centraldashboard-links-config
|
name: centraldashboard-links-config
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: centraldashboard
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: centraldashboard
|
||||||
|
env:
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
|
|
@ -12,3 +12,6 @@ resources:
|
||||||
- ../base/role.yaml
|
- ../base/role.yaml
|
||||||
- ../base/service-account.yaml
|
- ../base/service-account.yaml
|
||||||
- ../base/service.yaml
|
- ../base/service.yaml
|
||||||
|
- ../base/links-configmap.yaml
|
||||||
|
patchesStrategicMerge:
|
||||||
|
- deployment_patch.yaml
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config
|
name: kubeflow-config
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-bk4bc7m928
|
name: kubeflow-config-bk4bc7m928
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-bmh8k74f52
|
name: kubeflow-config-bmh8k74f52
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-c644m77455
|
name: kubeflow-config-c644m77455
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-988m2m9m87
|
name: kubeflow-config-988m2m9m87
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-bk4bc7m928
|
name: kubeflow-config-bk4bc7m928
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-bk4bc7m928
|
name: kubeflow-config-bk4bc7m928
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-bk4bc7m928
|
name: kubeflow-config-bk4bc7m928
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config
|
name: kubeflow-config
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
key: userid-prefix
|
key: userid-prefix
|
||||||
name: kubeflow-config-f5fk62kk74
|
name: kubeflow-config-f5fk62kk74
|
||||||
|
- name: DASHBOARD_LINKS_CONFIGMAP
|
||||||
|
value: centraldashboard-links-config
|
||||||
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
image: gcr.io/kubeflow-images-public/centraldashboard:vmaster-g8097cfeb
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,86 @@
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
links: |-
|
||||||
|
{
|
||||||
|
"menuLinks": [
|
||||||
|
{
|
||||||
|
"link": "/pipeline/",
|
||||||
|
"text": "Pipelines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/jupyter/",
|
||||||
|
"text": "Notebook Servers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "/katib/",
|
||||||
|
"text": "Katib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"externalLinks": [],
|
||||||
|
"quickLinks": [
|
||||||
|
{
|
||||||
|
"text": "Upload a pipeline",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View all pipeline runs",
|
||||||
|
"desc": "Pipelines",
|
||||||
|
"link": "/pipeline/#/runs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Create a new Notebook server",
|
||||||
|
"desc": "Notebook Servers",
|
||||||
|
"link": "/jupyter/new?namespace=kubeflow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "View Katib Experiments",
|
||||||
|
"desc": "Katib",
|
||||||
|
"link": "/katib/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"documentationItems": [
|
||||||
|
{
|
||||||
|
"text": "Getting Started with Kubeflow",
|
||||||
|
"desc": "Get your machine-learning workflow up and running on Kubeflow",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "MiniKF",
|
||||||
|
"desc": "A fast and easy way to deploy Kubeflow locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikf/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Microk8s for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally on native hypervisors",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-multipass/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Minikube for Kubeflow",
|
||||||
|
"desc": "Quickly get Kubeflow running locally",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/getting-started-minikube/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on GCP",
|
||||||
|
"desc": "Running Kubeflow on Kubernetes Engine and Google Cloud Platform",
|
||||||
|
"link": "https://www.kubeflow.org/docs/gke/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Kubeflow on AWS",
|
||||||
|
"desc": "Running Kubeflow on Elastic Container Service and Amazon Web Services",
|
||||||
|
"link": "https://www.kubeflow.org/docs/aws/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Requirements for Kubeflow",
|
||||||
|
"desc": "Get more detailed information about using Kubeflow and its components",
|
||||||
|
"link": "https://www.kubeflow.org/docs/started/requirements/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: centraldashboard
|
||||||
|
app.kubernetes.io/name: centraldashboard
|
||||||
|
name: centraldashboard-links-config
|
||||||
|
namespace: kubeflow
|
||||||
Loading…
Reference in New Issue