Skip to content

Commit

Permalink
Update description of Postgres port (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper authored Oct 24, 2023
1 parent 61f849a commit 7deffe5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/restate/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ description: "Deploy Restate on Kubernetes with this guide."
Restate is currently a single binary that contains everything you need.
It exposes three services by default, each on different ports:

| Name | Port | Description | Protocol |
|---------|------|-----------------------------------------------------------------------------|---------------------------------------------------|
| Ingress | 8080 | Acts as an API gateway for all services registered with Restate | gRPC + [Connect Protocol](https://connect.build/) |
| Storage | 9071 | Exposes raw RocksDB read-only storage operations, used by the CLI | gRPC |
| Meta | 9070 | Allows for CRUD operations on service metadata, eg for service registration | REST |
| Name | Port | Description | Protocol |
|----------|------|--------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
| Ingress | 8080 | Acts as an API gateway for all services registered with Restate | gRPC + [Connect Protocol](https://connect.build/) |
| Admin | 9070 | Allows for CRUD operations on service/endpoint metadata, eg for service registration | REST |
| Postgres | 9071 | Exposes Restate RocksDB read-only storage operations using the Postgres protocol. See [Introspection](/services/introspection) | Postgres |

It will store metadata and RocksDB data in the relative directory of /target under the current working directory of the process.

Expand Down Expand Up @@ -56,7 +56,7 @@ spec:
value: Json
ports:
- containerPort: 9070
name: meta
name: admin
- containerPort: 8080
name: ingress
- containerPort: 9071
Expand Down Expand Up @@ -91,7 +91,7 @@ spec:
app: restate
ports:
- port: 9070
name: meta
name: admin
- port: 8080
name: ingress
- port: 9071
Expand Down

0 comments on commit 7deffe5

Please sign in to comment.