Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The kfp setup.md file needs to tell you to run make setup command in the kind directory. #252

Closed
wants to merge 11 commits into from
1 change: 1 addition & 0 deletions .make.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ help::
# It enables the processing of a common set of rules on all sub-projects underneath this directory.
# Currently, the common/standardized set of rules are as follows and supported by makefile.include
#
# all: clean setup test build
# clean:
# setup:
# build:
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# sub-projects underneath this directory. Currently, the common/standardized set of rules are as follows
# and supported by .make.defaults
#
# all: clean setup test build
# setup:
# clean:
# build:
Expand All @@ -27,6 +28,8 @@ include .make.defaults
# Global rules that are generally to be implemented in the sub-directories and can
# be overridden there (the double colon on the rule makes the overridable).

all: clean test build
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know if we're ready for this, in particular build is ill-defined.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@daw3rd and @roytman If making a make all target is not feasible, please close this PR, but before doing that, Dean has found a typo in the setup.md file: deside => decide

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The typo is fixed by #333.

The kind directory is going to be refactored in a separate PR, and the README file in the root directory will be updated accordingly.


clean::
@# Help: Recursively $@ in all subdirs
$(MAKE) RULE=$@ .recurse
Expand Down
5 changes: 3 additions & 2 deletions kfp/doc/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ choose your OS system, and process according to "(Optional) Install the MinIO Cl

## Installation steps <a name = "installation"></a>

Before installation, you have to deside which KFP version do you want to use.
Before installation, you have to decide which KFP version do you want to use.
In order to use KFP v2, please set the following environment variable:

```shell
Expand All @@ -76,7 +76,8 @@ export KFPv2=1
Now, you can create a Kind cluster with all required software installed using the following command:

```shell
make setup
cd kind # Assuming you are in the repo root directory.
make setup
```
from this main package directory or from the `kind` directory.
If you do not want to upload the testing data into the locally deployed Minio, and reduce memory footprint, please set:
Expand Down