转载

jib源码分析及应用

简介

阅读本文前,建议事先了解下 docker环境下的持续构建

jib

基本使用

Google开源其Java容器化工具Jib,简化镜像构建全流程

mvn compile jib:build 从中可以看到

[INFO] Retrieving registry credentials for harbor.test.ximalaya.com...
[INFO] Getting base image harbor.test.ximalaya.com/test/jdk8-tomcat8...
[INFO] Building dependencies layer...
[INFO] Building resources layer...
[INFO] Building classes layer...
[INFO] Retrieving registry credentials for harbor.test.ximalaya.com...
[INFO] Finalizing...
[INFO] 
[INFO] Container entrypoint set to [java, -cp, /app/libs/*:/app/resources/:/app/classes/, org.apache.catalina.startup.Bootstrap]
[INFO] 
[INFO] Built and pushed image as harbor.xx/test/jib-demo
  1. 与常规的将代码及依赖 打成一个jar 包作为一个layer 不同,jib 将dependencies、resources、 classes(即项目代码) 分别打成一个layer, 在项目实践中,dependencies、resources 变化不多 ,因此能够复用相当一部分空间。

  2. maven pom.xml 配置 针对插件的 0.9.9 版本

    <plugin>
         <groupId>com.google.cloud.tools</groupId>
         <artifactId>jib-maven-plugin</artifactId>
         <version>0.9.9</version>
         <configuration>
             <allowInsecureRegistries>false</allowInsecureRegistries>
             <from>
                 <image>harbor.test.xxx.com/test/jdk8</image>
                 <auth>
                     <username>xxx</username>
                     <password>xxx</password>
                 </auth>
             </from>
             <to>
                 <image>harbor.test.xxx.com/test/jib-springboot-demo</image>
                 <auth>
                     <username>xxx</username>
                     <password>xxx</password>
                 </auth>
             </to>
             <container>
                 <mainClass>com.xxx.springboot.demo.DockerSpringbootDemoApplication</mainClass>
             </container>
         </configuration>
     </plugin>

还有一种方案 Optimizing Spring Boot apps for Docker

打tag

To tag the image with a simple timestamp, add the following to your pom.xml:

<properties>
  <maven.build.timestamp.format>yyyyMMdd-HHmmssSSS</maven.build.timestamp.format>
</properties>
Then in the jib-maven-plugin configuration, set the tag to:

<configuration>
  <to>
    <image>my-image-name:${maven.build.timestamp}</image>
  </to>
</configuration>

jib 优化

从目前来看,我们感觉针对 java 项目来说,jib 是最优的。jib 貌似可以做到,不用非得在 pom.xml 中体现。 mvn compile com.google.cloud.tools:jib-maven-plugin:0.10.0:build -Dimage=<MY IMAGE>

对以后的多语言,可以项目中 弄一个deploy.yaml 文件。这个yaml 文件应该是 跨语言的,yaml 文件的执行器 应能根据 yaml 配置 自动完成 代码 到 镜像的所有工作。

language:java
param:
creator: zhangsan

然后,编写一个 build 程序

  1. 碰到java 执行 mvn compile com.google.cloud.tools:jib-maven-plugin:0.10.0:build -Dimage=<MY IMAGE> 。这里 build 程序要做的工作 是根据 deploy.yaml 文件的用户参数 拼凑 mvn compile com.google.cloud.tools:jib-maven-plugin:0.10.0:build -Dimage=<MY IMAGE> 命令 并执行。 本质上还是用maven,只是在jenkins 和 maven 之间加了一层 ,加了一层之后,就可以更方便的支持用户的个性化(或者说,用户可以在项目代码上 而不是jenkins 上做个性化配置)
  2. 碰到golang 执行 go build。 go 语言中 一定有类似 jib 的框架在。

个人微信订阅号

jib源码分析及应用

原文  http://qiankunli.github.io/2018/11/19/jib_source.html
正文到此结束
Loading...