minikube+docker desktop搭建k8s环境部署SpringBoot应用(仅仅是玩玩,端口映射很麻烦)

1)先运行起来DockerDesktop

2)下载地址

kubernetes/minikube: Run Kubernetes locally

3)创建2c4g的k8s集群

复制代码
minikube start --force --driver=docker --cpus=2 --memory=4096mb --base-image=registry.cn-hangzhou.aliyuncs.com/google_containers/kicbase:v0.0.44

4)检查k8s集群状态

复制代码
minikube.exe status

minikube
type: Control Plane
host: Running
kubelet: Running
apiserver: Running
kubeconfig: Configured

5)Dockerfile

复制代码
FROM maven:3.9.9-eclipse-temurin-17 AS build
WORKDIR /build
COPY pom.xml .
COPY settings.xml /root/.m2/settings.xml
RUN mvn -s /root/.m2/settings.xml -B -DskipTests dependency:go-offline
COPY src ./src
RUN mvn -s /root/.m2/settings.xml -B -DskipTests package

FROM eclipse-temurin:17-jre
WORKDIR /app
COPY --from=build /build/target/netty-game-server-0.0.1-SNAPSHOT.jar app.jar
EXPOSE 7000
ENTRYPOINT ["java", "-jar", "/app/app.jar"]

6)k8s下编写

deployment.ymal

复制代码
apiVersion: apps/v1
kind: Deployment
metadata:
  name: netty-game-server
  labels:
    app: netty-game-server
spec:
  replicas: 1
  selector:
    matchLabels:
      app: netty-game-server
  template:
    metadata:
      labels:
        app: netty-game-server
    spec:
      containers:
        - name: netty-game-server
          image: netty-game-server:0.0.1
          imagePullPolicy: IfNotPresent
          ports:
            - containerPort: 7000
              protocol: TCP
          readinessProbe:
            tcpSocket:
              port: 7000
            initialDelaySeconds: 5
            periodSeconds: 10
          livenessProbe:
            tcpSocket:
              port: 7000
            initialDelaySeconds: 15
            periodSeconds: 20

service.yaml

复制代码
apiVersion: v1
kind: Service
metadata:
  name: netty-game-server
spec:
  type: NodePort
  selector:
    app: netty-game-server
  ports:
    - name: tcp-game
      protocol: TCP
      port: 7000
      targetPort: 7000
      nodePort: 30700

7)部署

复制代码
minikube image build -t netty-game-server:0.0.1 .
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
kubectl get pods -l app=netty-game-server
kubectl get svc netty-game-server

8)打开UI界面查看当前minikube中运行了哪些应用

复制代码
minikube dashboard

9)查看日志

复制代码
PS C:\Users\Admin\Desktop> kubectl logs -f deploy/netty-game-server

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/

 :: Spring Boot ::                (v3.3.5)

2026-04-01T14:09:26.032Z  INFO 1 --- [netty-game-server] [           main] c.e.g.NettyGameServerApplication         : Starting NettyGameServerApplication v0.0.1-SNAPSHOT using Java 17.0.18 with PID 1 (/app/app.jar started by root in /app)
2026-04-01T14:09:26.035Z  INFO 1 --- [netty-game-server] [           main] c.e.g.NettyGameServerApplication         : No active profile set, falling back to 1 default profile: "default"
2026-04-01T14:09:26.847Z  INFO 1 --- [netty-game-server] [           main] c.e.g.NettyGameServerApplication         : Started NettyGameServerApplication in 1.8 seconds (process running for 2.495)
2026-04-01T14:09:26.994Z  INFO 1 --- [netty-game-server] [           main] com.example.gameserver.NettyTcpServer    : Netty TCP game server started on port 7000
相关推荐
果果燕2 小时前
ARM嵌入式学习(四)--- C语言应用:led、beep、key
linux·运维·算法
以太浮标2 小时前
华为eNSP模拟器 - 设备及技术栈场景全维度解析
运维·网络·网络协议·网络安全·华为·负载均衡·信息与通信
墨者阳2 小时前
数据库自动化指标采集与智能评分系统实践与构想
运维·数据库·自动化
清平乐的技术专栏2 小时前
Obsidian使用指南
运维
AI视觉网奇2 小时前
docker unexpected EOF
docker
半个俗人2 小时前
07.Linux vi编辑器
linux·运维·编辑器
linux修理工2 小时前
在 Debian 上部署 ELK 7.17 完整指南
运维·jenkins
Python资讯站2 小时前
【Pycharm教程】如何让PyCharm使用Docker配置Python解释器?你只需要看这篇就够了!
python·docker·pycharm·python基础·python学习·python教学·配置python解释器
HealthScience2 小时前
Linux在一个容器中创建一个子用户
linux·运维·服务器