Skip to content

Commit

Permalink
docs(dev-container): Fix buildkit doc for local dev (argoproj#9580)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeridth authored Sep 13, 2022
1 parent 2951148 commit ace1798
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Note:

```json
"features": {
"buildkit": false
"buildkit": true
},
```

Expand Down Expand Up @@ -80,15 +80,15 @@ To start:
Run:

```bash
make start
make start
```

Make sure you don't see any errors in your terminal. This runs the Workflow Controller locally on your machine (not in Docker/Kubernetes).

You can submit a workflow for testing using `kubectl`:

```bash
kubectl create -f examples/hello-world.yaml
kubectl create -f examples/hello-world.yaml
```

We recommend running `make clean` before `make start` to ensure recompilation.
Expand Down Expand Up @@ -118,8 +118,8 @@ make start UI=true
If you are making change to the CLI (i.e. Argo Server), you can build it separately if you want:

```bash
make cli
./dist/argo submit examples/hello-world.yaml ;# new CLI is created as `./dist/argo`
make cli
./dist/argo submit examples/hello-world.yaml ;# new CLI is created as `./dist/argo`
```

Although, note that this will be built automatically if you do: `make start API=true`.
Expand All @@ -146,7 +146,7 @@ make start UI=true PROFILE=sso
Start up Argo Workflows using the following:

```bash
make start PROFILE=mysql AUTH_MODE=client STATIC_FILES=false API=true
make start PROFILE=mysql AUTH_MODE=client STATIC_FILES=false API=true
```

If you want to run Azure tests against a local Azurite, add `AZURE=true`:
Expand All @@ -163,7 +163,7 @@ Our CI will run those concurrently when you create a PR, which will give you fee
Find the test that you want to run in `test/e2e`

```bash
make TestArtifactServer
make TestArtifactServer
```

If you wish to include tests against Azure Storage, define `AZURE=true`:
Expand Down

0 comments on commit ace1798

Please sign in to comment.