赞
踩
目录
本系列教程将分2篇文章讲解,怎么部署springboot 到k8s 上。
第一篇:springboot 准备,这里包括打包镜像。
第二篇:springboot 镜像部署到k8s, 我们将使用deployment ,service 用最简单的方式deploy k8s.
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.10</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.example</groupId>
- <artifactId>k8s-springboot2</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>k8s-springboot2</name>
- <description>k8s-springboot2</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- </project>
这是最简单的springboot引入方式, 我只引入了一个web模块,直接可以在浏览器打印一段话, 方便测试。
代码如下(示例):
- FROM openjdk:8-jdk-alpine
- ADD ./target/*.jar /app.jar
- ENTRYPOINT ["java","-jar","app.jar"]
直接复制即可,这里面*代表生成的jar名字, 用*代替为了以后维护方便。
- package com.example.k8sspringboot2.controller;
-
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- @RestController
- @RequestMapping(value = "/test")
- public class TestController {
-
- @GetMapping(value = "/search")
- public String doTest(){
- System.out.println("this is a test");
-
- return "success";
- }
-
- }
这里面非常简单定义一个controller, 用浏览器直接访问
http://localhost:8080/test/search 直接返回 success 字符串
直接点击package 选项,可以直接在target文件夹里生成jar包。
进入项目根目录,我的是
开始打包操作
Docker build -t webapp3.0 .
镜像名称 可以自己定义镜像名字,我的镜像名字是webapp3.0. 别忘了 .
我的机器已经安装docker desktop
docker tag webapp3.0 yaobo2816/springboot-webapp3.0:v2
1.首先登录你的docker 账号里 docker login,
2. 开始打tag, 比如我想打成v2版本
docker push yaobo2816/springboot-webapp3.0:v2
本地测试一下,远程镜像是否可以正常启动。
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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。