Skip to content

Commit

Permalink
Add instructions to manage utils pod using K8s Deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
arunvelsriram committed Sep 7, 2023
1 parent 6e739a1 commit 0ae606a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ $ psql -h hostname -U test -d test
$ exit
```

Using a Kubernetes Deployment:

```
kubectl create deploy utils --image=arunvelsriram/utils --replicas=1 -- sleep infinity
kubectl exec -it deploy/utils -- bash
```

**Note:** `--rm` option will delete the `pod` after exiting from the container

## General Usage
Expand Down

0 comments on commit 0ae606a

Please sign in to comment.