You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
833 B
25 lines
833 B
# The configuration for the ML pipelines APIServer
|
|
# Based on https://github.com/kubeflow/pipelines/blob/master/backend/src/apiserver/config/config.json
|
|
apiVersion: v1
|
|
data:
|
|
# apiserver assumes the config is named config.json
|
|
config.json: |
|
|
{
|
|
"DBConfig": {
|
|
"DriverName": "mysql",
|
|
"DataSourceName": "",
|
|
"DBName": "mlpipeline"
|
|
},
|
|
"ObjectStoreConfig":{
|
|
"AccessKey": "minio",
|
|
"SecretAccessKey": "minio123",
|
|
"BucketName": "mlpipeline"
|
|
},
|
|
"InitConnectionTimeout": "6m",
|
|
"DefaultPipelineRunnerServiceAccount": "pipeline-runner",
|
|
"ML_PIPELINE_VISUALIZATIONSERVER_SERVICE_HOST": "ml-pipeline-ml-pipeline-visualizationserver",
|
|
"ML_PIPELINE_VISUALIZATIONSERVER_SERVICE_PORT": 8888
|
|
}
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: ml-pipeline-config
|
|
|