Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to compile Istio version 1.6

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail how to compile Istio version 1.6. the editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

Brief introduction of compilation

The core Makefile includes:

Makefile, mainly the entrance

Makefile.core.mk environment settings, and main operations (.PHONY)

A large number of meticulous operations of common/scripts/,

Tools/, 's addition to the above

Pull substitution code

It takes a little longer and occasionally makes mistakes. Be patient.

Mkdir-p $GOPATH/src/istio.io/istiocd $GOPATH/src/istio.io/istiogit clone https://github.com/istio/istiocd istio compilation Makefile modification

Makefile

Masking, which is very important, mainly affects some environment variables compiled by go

#-include Makefile.overrides.mk

Makefile.core.mk

Modify goproxy settin

# export GOPROXY? = https://proxy.golang.orgexport GOPROXY = https://goproxy.cn compilation

Make init

Make docker (errors encountered in the process & areas that need to be modified, see FAQ)

Generate result [root@k8s-master ~] # docker imagesREPOSITORY TAG IMAGE ID CREATED SIZEistio/install-cni 7637c3f9f4a20a163a62166544a61bb724df66f5 f1766aad6d66 20 minutes ago 223MBistio/operator 7637c3f9f4a20a163a62166544a61bb724df66f5 14ca8786191e 20 minutes ago 244MBistio/istioctl 7637c3f9f4a20a163a62166544a61bb724df66f5 06fe55eca348 21 minutes ago 272MBistio/mixer_codegen 7637c3f9f4a20a163a62166544a61bb724df66f5 555dad96d372 21 minutes ago 223MBistio/mixer 7637c3f9f4a20a163a62166544a61bb724df66f5 e214cd046774 21 minutes ago 128MBistio/test_policybackend 7637c3f9f4a20a163a62166544a61bb724df66f5 2e62a8b9ed5b 21 minutes ago 193MBistio/app_sidecar_debian_10 7637c3f9f4a20a163a62166544a61bb724df66f5 918bbcc6658c 21 minutes ago 443MBistio/app_sidecar_debian_9 7637c3f9f4a20a163a62166544a61bb724df66f5 23c23bd23815 21 minutes ago 428MBistio/app_sidecar_ubuntu_focal 7637c3f9f4a20a163a62166544a61bb724df66f5 5c14f607b3a4 21 minutes ago 403MBistio/app_sidecar_ubuntu_bionic 7637c3f9f4a20a163a62166544a61bb724df66f5 acf59e6f6b39 22 minutes ago 408MBistio/app_sidecar_ubuntu_xenial Images that cannot be pulled by 7637c3f9f4a20a163a62166544a61bb724df66f5 5e724a16f02e 22 minutes ago 466MBFAQ

To borrow Aliyun + github to compile, please see here

Docker login

The user name used to log in is the full name of the Aliyun account, and the password is the password set when activating the service.

Docker login-- username=xxxxxx registry.cn-zhangjiakou.aliyuncs.com image one

The specific name of tag is related to the specific version of the istio script. The following one with a date is often changed, and it can be advanced once a week or two (so it is necessary to pull the image by yourself. Of course, you can also try to compile with an old version of the image)

Docker pull registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:v0.1docker tag registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:v0.1 gcr.io/istio-testing/build-tools:master-2020-07-08T14-39-36 Image two Docker pull registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:cc-v0.1docker tag registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:cc-v0.1 gcr.io/distroless/cc

After tag, there is a problem with the summary information of the image, resulting in the following processing must be done:

/ / (more than one place) delete the summary information in the compilation error prompt and delete it from the compilation script. Change FROM gcr.io/distroless/cc@sha256:f81e5db8287d66b012d874a6f7fea8da5b96d9cc509aa5a9b5d095a604d4bca1 as distroless to FROM gcr.io/distroless/cc as distroless image three docker pull registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:static-debian10-v0.1docker tag registry.cn-zhangjiakou.aliyuncs.com/com_ka_img/istio:static-debian10-v0.1 gcr.io/distroless/static-debian10

(ibid.) after tag, there is a problem with the summary information of the image, resulting in the following processing:

/ / (more than one place) delete the summary information in the compilation error prompt and delete it from the compilation script. Change FROM FROM gcr.io/distroless/static-debian10@sha256:4433370ec2b3b97b338674b4de5ffaef8ce5a38d1c9c0cb82403304b8718cde9 to FROM gcr.io/distroless/static-debian10 to install fpm

Https://www.iyunv.com/thread-982376-1-1.html but the ruby version that comes with centos by default is too low.

Upgrade ruby to version 2.3

Https://www.cnblogs.com/lylongs/p/11302272.html

Compiling specified components make pilot docker.pilot # compiling pilot components and mirrored make app docker.app # compiling app components and mirrored make proxy docker.proxy # compiling proxy components and mirrored make proxy_init docker.proxy_init # compiling proxy_init components and mirroring make proxy_debug docker.proxy_debug # compiling proxy_debug components and mirroring make sidecar_injector docker.sidecar_injector # compiling sidecar_injector components and mirror make proxyv2 docker.proxyv2 Compile proxyv2 components and image make push.docker.pilot # push pilot image to dockerhub Other components are similar

The compilation is generated in such as:

-rwxr-xr-x 1 root root 120237998 Jul 20 20:00. / out/linux_amd64/docker_build/docker.pilot/pilot-discovery-rwxr-xr-x 1 root root 120237998 Jul 20 20:00. / out/linux_amd64/pilot-discovery this is the end of the article on "how to compile Istio version 1.6". I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good. Please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report