Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codygreen/echo-server
https://github.com/codygreen/echo-server
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codygreen/echo-server
- Owner: codygreen
- Created: 2024-04-30T00:34:05.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-30T01:19:25.000Z (8 months ago)
- Last Synced: 2024-05-01T01:39:22.317Z (8 months ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Echo Server
A Rust implementation of an HTTP echo server. It will echo the HTTP request as the HTTP response.
## Deployment
### Docker
Run the following command to host the echo server on port 3000:
```shell
docker run -p 3000:3000 --rm --name echo-server ghcr.io/codygreen/echo-server:main
```### Kubernetes
Create the following `echo.yml` file to deploy the echo service via node port on port 30000:
```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: echo-server-deployment
labels:
app: echo-server
spec:
replicas: 1
selector:
matchLabels:
app: echo-server
template:
metadata:
labels:
app: echo-server
spec:
containers:
- name: echo-server
image: ghcr.io/codygreen/echo-server:main
ports:
- containerPort: 3000---
apiVersion: v1
kind: Service
metadata:
name: echo-server-service
spec:
type: NodePort
selector:
app: echo-server
ports:
- port: 3000
targetPort: 3000
nodePort: 30000
```Run the following command to deploy:
```shell
kubectl apply -f echo.yml
```