当前位置:   article > 正文

springboot 部署k8s(一)

springboot 部署k8s(一)

系列文章目录


 


目录

系列文章目录

前言

一、IDEA 工程目录

二、pom.xml

1.代码如下

2.Dockerfile

3.Controller 代码

4. 打包操作 

5 打包镜像

6 镜像打tag

7 push镜像到容器里

 8 验证是否上传成功

总结


前言

本系列教程将分2篇文章讲解,怎么部署springboot 到k8s 上。

第一篇:springboot 准备,这里包括打包镜像。

第二篇:springboot 镜像部署到k8s, 我们将使用deployment ,service 用最简单的方式deploy k8s.


一、IDEA 工程目录

二、pom.xml

1.代码如下

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.10</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>k8s-springboot2</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>k8s-springboot2</name>
  15. <description>k8s-springboot2</description>
  16. <properties>
  17. <maven.compiler.source>8</maven.compiler.source>
  18. <maven.compiler.target>8</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-devtools</artifactId>
  28. <scope>runtime</scope>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>
这是最简单的springboot引入方式, 我只引入了一个web模块,直接可以在浏览器打印一段话, 方便测试。

2.Dockerfile

代码如下(示例):

  1. FROM openjdk:8-jdk-alpine
  2. ADD ./target/*.jar /app.jar
  3. ENTRYPOINT ["java","-jar","app.jar"]

直接复制即可,这里面*代表生成的jar名字, 用*代替为了以后维护方便。


3.Controller 代码

  1. package com.example.k8sspringboot2.controller;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. @RequestMapping(value = "/test")
  7. public class TestController {
  8. @GetMapping(value = "/search")
  9. public String doTest(){
  10. System.out.println("this is a test");
  11. return "success";
  12. }
  13. }

 这里面非常简单定义一个controller, 用浏览器直接访问

http://localhost:8080/test/search 直接返回 success 字符串

4. 打包操作 

 直接点击package 选项,可以直接在target文件夹里生成jar包。

5 打包镜像

进入项目根目录,我的是

开始打包操作

Docker build -t   webapp3.0   .

  镜像名称 可以自己定义镜像名字,我的镜像名字是webapp3.0. 别忘了 .

  我的机器已经安装docker desktop

6 镜像打tag

docker  tag webapp3.0  yaobo2816/springboot-webapp3.0:v2

1.首先登录你的docker 账号里  docker login,

2. 开始打tag, 比如我想打成v2版本

7 push镜像到容器里

docker push yaobo2816/springboot-webapp3.0:v2

 8 验证是否上传成功

   

本地测试一下,远程镜像是否可以正常启动。

docker run --name springboot1  -p 8085:8080  yaobo2816/springboot-webapp3.0

 http://localhost:8085/test/search

总结

这里面springboot 已经可以打包镜像了,下一篇将部署到k8s.

gitee: https://gitee.com/yaobo2816/springboot-deploy-k8s

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/629146
推荐阅读
相关标签
  

闽ICP备14008679号