Skip to content

Commit e8383cc

Browse files
authored
Merge pull request opendatahub-io#55 from gmfrasca/update-frontend-references
chore(frontend) - Update GitHub References in UI to use Data Science Pipelines nomenclature
2 parents e8f99e8 + 70e81f5 commit e8383cc

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"name": "[Demo] flip-coin",
4-
"description": "[source code](https://github.com/opendatahub-io/ml-pipelines/tree/master/samples/flip-coin) A conditional pipeline to flip coins based on a random number generator.",
4+
"description": "[source code](https://github.com/opendatahub-io/data-science-pipelines/tree/master/samples/flip-coin) A conditional pipeline to flip coins based on a random number generator.",
55
"file": "/samples/flip-coin/condition.yaml"
66
}
77
]

frontend/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2222
<meta name="theme-color" content="#000000">
2323
<link rel="shortcut icon" href="%PUBLIC_URL%/static/favicon.ico">
24-
<title>Kubeflow Pipelines</title>
24+
<title>Data Science Pipelines</title>
2525
<script>
2626
window.KFP_FLAGS={};
2727
window.KFP_FLAGS.DEPLOYMENT=null;

frontend/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Frontend webserver package for Kubeflow Pipelines",
2+
"description": "Frontend webserver package for Data Science Pipelines",
33
"main": "server.js",
44
"dependencies": {
55
"@google-cloud/storage": "^2.5.0",

frontend/src/components/Graph.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ describe('Graph', () => {
165165
const [message, additionalInfo] = onError.mock.calls[0];
166166
expect(message).toEqual('There was an error rendering the graph.');
167167
expect(additionalInfo).toEqual(
168-
"There was an error rendering the graph. This is likely a bug in Kubeflow Pipelines. Error message: 'Graph definition is invalid. Cannot get node by 'node1'.'.",
168+
"There was an error rendering the graph. This is likely a bug in Data Science Pipelines. Error message: 'Graph definition is invalid. Cannot get node by 'node1'.'.",
169169
);
170170
});
171171
});

frontend/src/components/Graph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class GraphErrorBoundary extends React.Component<GraphErrorBoundaryProps> {
119119

120120
componentDidCatch(error: Error): void {
121121
const message = 'There was an error rendering the graph.';
122-
const additionalInfo = `${message} This is likely a bug in Kubeflow Pipelines. Error message: '${error.message}'.`;
122+
const additionalInfo = `${message} This is likely a bug in Data Science Pipelines. Error message: '${error.message}'.`;
123123
if (this.props.onError) {
124124
this.props.onError(message, additionalInfo);
125125
}

frontend/src/components/Router.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ export const RoutePageFactory = {
133133

134134
export const ExternalLinks = {
135135
DOCUMENTATION: 'https://www.kubeflow.org/docs/pipelines/sdk/pipelines-with-tekton/', // TODO: update?
136-
GITHUB: 'https://github.com/opendatahub-io/ml-pipelines',
137-
GITHUB_ISSUE: 'https://github.com/opendatahub-io/ml-pipelines/issues/new/choose',
136+
GITHUB: 'https://github.com/opendatahub-io/data-science-pipelines',
137+
GITHUB_ISSUE: 'https://github.com/opendatahub-io/data-science-pipelines/issues/new/choose',
138138
};
139139

140140
export interface DialogProps {

frontend/src/components/SideNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export class SideNav extends React.Component<SideNavInternalProps, SideNavState>
234234
tagName: tagName || 'unknown',
235235
commitHash: commitHash ? commitHash.substring(0, 7) : 'unknown',
236236
commitUrl:
237-
'https://www.github.com/opendatahub-io/ml-pipelines' +
237+
'https://www.github.com/opendatahub-io/data-science-pipelines' +
238238
(commitHash && commitHash !== 'unknown' ? `/commit/${commitHash}` : ''),
239239
date: buildInfo.buildDate
240240
? new Date(buildInfo.buildDate).toLocaleDateString('en-US')

manifests/opendatahub/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ML Pipelines
22

3-
ML Pipelines is the Open Data Hub's pipeline solution for data scientists. It is built on top of the upstream [Kubeflow Piplines](https://github.com/kubeflow/pipelines) and [kfp-tekton](https://github.com/kubeflow/kfp-tekton) projects. The Open Data Hub community has a [fork](https://github.com/opendatahub-io/ml-pipelines) of this upstream under the Open Data Hub org.
3+
ML Pipelines is the Open Data Hub's pipeline solution for data scientists. It is built on top of the upstream [Kubeflow Piplines](https://github.com/kubeflow/pipelines) and [kfp-tekton](https://github.com/kubeflow/kfp-tekton) projects. The Open Data Hub community has a [fork](https://github.com/opendatahub-io/data-science-pipelines) of this upstream under the Open Data Hub org.
44

55

66
## Installation

0 commit comments

Comments
 (0)