gpt4 book ai didi

azure - 使用 Azure Kubernetes 在端口 80 上运行 Spring Boot

转载 作者:行者123 更新时间:2023-12-02 21:12:04 25 4
gpt4 key购买 nike

给定一个带有 docker-compose.yaml 的 Spring Boot 应用程序:

version: '3'
services:
my-ws:
build: .
image: my-ws
container_name: my-ws
ports:
- "8080:8080"

和 kubernetes list :

apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: my-ws
spec:
replicas: 3
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 5
template:
metadata:
labels:
app: my-ws
spec:
containers:
- name: my-ws
image: myacr.azurecr.io/my-ws:v1
ports:
- containerPort: 8080
resources:
requests:
cpu: 250m
limits:
cpu: 500m
---
apiVersion: v1
kind: Service
metadata:
name: my-ws
spec:
loadBalancerIP: <redacted>
type: LoadBalancer
ports:
- port: 8080
selector:
app: my-ws

我们可以在 Azure Kubernetes 服务上成功部署,并且应用程序在端口 8080 上响应。我们希望它在端口 80 上响应。我们已尝试将 docker-compose.yaml 端口更改为:

ports:
- 80:80

和 list :

- containerPort: 80
...
-port: 80

并重新部署。部署成功,但该应用程序在 8080 或 80 上不可用。

最佳答案

您需要将服务端口 80 映射到容器端口 8080,这是最简单的解决方案(且破坏性最小):

---
apiVersion: v1
kind: Service
metadata:
name: my-ws
spec:
type: LoadBalancer
ports:
- port: 80
targetPort: 8080
selector:
app: my-ws

ps。将其他所有内容保留为更改之前的样子

关于azure - 使用 Azure Kubernetes 在端口 80 上运行 Spring Boot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53853736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com