Skip to content

Commit

Permalink
docs: Fix make targets in developing instructions (#250)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?
The make file targets to apply and unapply the agent were renamed and
were not updated developing instructions.

## Short description of the changes
- Fixes makefile targets to use the correct names

## How to verify that this has the expected result
The makefile targets used in the developing instructions are correct.
  • Loading branch information
MikeGoldsmith committed Sep 28, 2023
1 parent 18b10b1 commit 9fe3663
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ For example, to get a local docker image called `hny/network-agent-go:custom`:
Set environment variables like `HONEYCOMB_API_KEY` in a file called `.env`.
These environment variables get passed in the make command.

`make apply-network-agent`
`make apply-agent`

```sh
$ make apply-network-agent
$ make apply-agent
namespace/honeycomb created
secret/honeycomb created
daemonset.apps/hny-network-agent created
Expand All @@ -69,7 +69,7 @@ hny-network-agent-bqcvl 1/1 Running 0 94s

To remove the agent:

`make unapply-network-agent` or `kubectl delete -f smoke-tests/deployment.yaml`
`make unapply-agent` or `kubectl delete -f smoke-tests/deployment.yaml`

## Optionally install the "greetings" example app

Expand Down

0 comments on commit 9fe3663

Please sign in to comment.