From 168b9aa4492502a1e57fcc3100f2d6932f0e0dda Mon Sep 17 00:00:00 2001 From: Daniel Dowler <12484302+dandawg@users.noreply.github.com> Date: Mon, 10 Feb 2025 14:09:15 -0700 Subject: [PATCH 1/2] rebase resolution Signed-off-by: Daniel Dowler <12484302+dandawg@users.noreply.github.com> --- backend/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/README.md b/backend/README.md index 89a0cfbfe89..1ec33701df7 100644 --- a/backend/README.md +++ b/backend/README.md @@ -9,7 +9,8 @@ This README will help you set up your coding environment in order to build and r ## Prerequisites Before you begin, ensure you have: -- Go programming language installed +- [Go installed](https://go.dev/doc/install) +- [go-licenses tool](../hack/install-go-licenses.sh) - Docker or Podman installed (for building container images) Note that you may need to restart your shell after installing these resources in order for the changes to take effect. @@ -97,7 +98,8 @@ make -C backend dev-kind-cluster This may take several minutes since there are many pods. Note that many pods will be in "CrashLoopBackOff" status until all the pods have started. -Also, note that the config in the `make` command above sets the `ml-pipeline` `Deployment` (api server) to have 0 replicas. The intent is to replace it with a locally running API server for debugging and faster development. See the following steps to run the API server locally, and connect it to the KFP backend on your Kind cluster. Note that other backend components (for example, the persistence agent) may show errors until the API server is brought up and connected to the cluster. +> [!NOTE] +> The config in the `make` command above sets the `ml-pipeline` `Deployment` (api server) to have 0 replicas. The intent is to replace it with a locally running API server for debugging and faster development. See the following steps to run the API server locally, and connect it to the KFP backend on your Kind cluster. Note that other backend components (for example, the persistence agent) may show errors until the API server is brought up and connected to the cluster. #### Launching the API Server With VSCode From d3944d28cfc46773b808d5cc35f40085ea27bb4e Mon Sep 17 00:00:00 2001 From: Daniel Dowler <12484302+dandawg@users.noreply.github.com> Date: Tue, 11 Feb 2025 14:55:10 -0700 Subject: [PATCH 2/2] removing go-licenses install instruction Signed-off-by: Daniel Dowler <12484302+dandawg@users.noreply.github.com> --- backend/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/README.md b/backend/README.md index 1ec33701df7..19c6cf2bec4 100644 --- a/backend/README.md +++ b/backend/README.md @@ -10,7 +10,6 @@ This README will help you set up your coding environment in order to build and r ## Prerequisites Before you begin, ensure you have: - [Go installed](https://go.dev/doc/install) -- [go-licenses tool](../hack/install-go-licenses.sh) - Docker or Podman installed (for building container images) Note that you may need to restart your shell after installing these resources in order for the changes to take effect.