内容简介:阅读本文前,建议事先了解下
简介
阅读本文前,建议事先了解下 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
-
与常规的将代码及依赖 打成一个jar 包作为一个layer 不同,jib 将dependencies、resources、 classes(即项目代码) 分别打成一个layer, 在项目实践中,dependencies、resources 变化不多 ,因此能够复用相当一部分空间。
-
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 程序
- 碰到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 上做个性化配置) - 碰到golang 执行 go build。 go 语言中 一定有类似 jib 的框架在。
个人微信订阅号
以上所述就是小编给大家介绍的《jib源码分析及应用》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Android应用权限源码分析
- redux 源码解析与实际应用
- Androd 应用启动过程的源码分析
- Android源码分析--应用程序启动
- SpringBoot源码解析之应用类型识别
- 监督式机器学习算法的应用:择时【附源码】
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python基础教程(第2版)
Magnus Lie Hetland / 司维、曾军崴、谭颖华 / 人民邮电出版社 / 2010-7 / 69.00元
本书是经典教程的全新改版,作者根据Python 3.0版本的种种变化,全面改写了书中内容,做到既能“瞻前”也能“顾后”。本书层次鲜明、结构严谨、内容翔实,特别是在最后几章,作者将前面讲述的内容应用到了10个引人入胜的项目中,并以模板的形式介绍了项目的开发过程。本书既适合初学者夯实基础,又能帮助Python程序员提升技能,即使是 Python方面的技术专家,也能从书里找到令你耳目一新的东西。一起来看看 《Python基础教程(第2版)》 这本书的介绍吧!