Skip to content

Commit

Permalink
port forwarding
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Fontes <lucas@cosmonic.com>
  • Loading branch information
lxfontes committed Jul 10, 2024
1 parent 9c529d7 commit ca54a67
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions examples/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ kubectl get deploy wadm
## Install the operator

```sh
kubectl apply -k ../deploy/base
kubectl apply -k ../../deploy/base
```

Validate installation with:
Expand All @@ -58,7 +58,7 @@ Check wasmCloud host status with:
kubectl describe wasmcloudhostconfig default
```

## Deploying applications using kubectl
## Managing applications using kubectl

Install the rust hello world application:

Expand All @@ -71,3 +71,17 @@ Check application status with:
```bash
kubectl get applications
```

## Managing applications with wash

Port forward into the NATS cluster. 4222 = NATS Service, 4223 = NATS Websockets

```bash
kubectl port-forward svc/nats-cluster 4222:4222 4223:4223
```

In another shell:

```bash
wash app list
```

0 comments on commit ca54a67

Please sign in to comment.