在 docker run 命令中,我们可以指定要绑定到 EXPOSEd 容器端口的主机端口范围。我想通过 Kubernetes 做同样的事情。有谁知道这是怎么做到的吗?我当前的 pod 定义为 -
apiVersion: v1
kind: Pod
metadata:
name: nginx-testing
spec:
containers:
- name: nginx-container
image: docker.io/nginx
ports:
- containerPort: 80
hostPort: 9088
在最后一行,我想要一个端口号范围,而不是指定单个端口号。我尝试了类似的东西hostPort: 9088-9999 or 9088..9999
,但它不起作用。