You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/10/08 10:16:05 UTC

[skywalking-java] branch main updated: Doc: Update setup agent in kubernetes from 'containers' to 'initContainers'. (#44)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git


The following commit(s) were added to refs/heads/main by this push:
     new 66a93ea  Doc: Update setup agent in kubernetes from 'containers' to 'initContainers'. (#44)
66a93ea is described below

commit 66a93ead7349df6d0832932878bddcfa1a405beb
Author: Hardy <40...@users.noreply.github.com>
AuthorDate: Fri Oct 8 18:16:01 2021 +0800

    Doc: Update setup agent in kubernetes from 'containers' to 'initContainers'. (#44)
---
 docs/en/setup/service-agent/java-agent/containerization.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/en/setup/service-agent/java-agent/containerization.md b/docs/en/setup/service-agent/java-agent/containerization.md
index e7b9c28..b067865 100644
--- a/docs/en/setup/service-agent/java-agent/containerization.md
+++ b/docs/en/setup/service-agent/java-agent/containerization.md
@@ -35,15 +35,16 @@ spec:
     - name: skywalking-agent
       emptyDir: { }
 
-  containers:
+  initContainers:
     - name: agent-container
-      image: apache/skywalking-java-agent:8.4.0-alpine
+      image: apache/skywalking-java-agent:8.7.0-alpine
       volumeMounts:
         - name: skywalking-agent
           mountPath: /agent
       command: [ "/bin/sh" ]
       args: [ "-c", "cp -R /skywalking/agent /agent/" ]
 
+  containers:
     - name: app-container
       image: springio/gs-spring-boot-docker
       volumeMounts: