Skip to content

Commit

Permalink
docs: added instructions for tagging the package before deploying (#3412
Browse files Browse the repository at this point in the history
)

* docs: added steps for tagging the package before deploying
  • Loading branch information
droot authored Jul 25, 2022
1 parent d68d7eb commit ff8c49d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions site/guides/namespace-provisioning-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,15 +402,18 @@ Package "backend"
```

So with that we now have a backend service ready to be onboarded and applied to
the cluster. So the first step would be to commit the backend package to
deployment repo.
the cluster. So the first step would be to commit and tag the backend package in
the deployment repo.

```shell
# assuming you are in deployment repo

$ git add backend && git commit -am "initial pkg for deployment"
$ git push origin main

# tag the package
$ git tag backend/v0 main && git push origin backend/v0

```

## Deploy the package in kubernetes cluster
Expand Down

0 comments on commit ff8c49d

Please sign in to comment.