#startup #randomly #word #serve #load-balancing #kubernetes #string

app one-word-server

启动时随机选择一个单词提供服务

1 个不稳定版本

0.1.0 2023年5月6日

17#randomly

每月21 次下载

MIT 许可证

7KB

通过 HTTP 提供字符串

字符串在启动时随机选择。

这是为了测试 Kubernetes 集群中的负载均衡。
一旦容器/pod 启动,它将始终返回相同的字符串。

运行

cargo run

现在可以获取该字符串

curl https://127.0.0.1:8080/
# fast-duck

Kubernetes 部署

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: one-word-server
  labels:
    app: rust
spec:
  replicas: 3
  selector:
    matchLabels:
      app: rust
  template:
    metadata:
      labels:
        app: rust
    spec:
      containers:
      - name: build
        image: rust:latest
        command:
          - cargo
          - run
          - one-word-server

依赖项

~15–25MB
~202K SLoC