You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2022/07/12 12:49:48 UTC

[skywalking-showcase] branch fix/swck updated (7ba1303 -> 27fa6cf)

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

kezhenxu94 pushed a change to branch fix/swck
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


 discard 7ba1303  Fix swck agent injector uses wrong image tag
     new 27fa6cf  Fix swck agent injector uses wrong image tag

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7ba1303)
            \
             N -- N -- N   refs/heads/fix/swck (27fa6cf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/publish-images.yaml | 1 -
 1 file changed, 1 deletion(-)


[skywalking-showcase] 01/01: Fix swck agent injector uses wrong image tag

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch fix/swck
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git

commit 27fa6cf17b7a35b85782b5d215daf7e85da42055
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Jul 12 20:49:38 2022 +0800

    Fix swck agent injector uses wrong image tag
---
 deploy/platform/kubernetes/features.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/deploy/platform/kubernetes/features.mk b/deploy/platform/kubernetes/features.mk
index 4897de5..1e89c47 100644
--- a/deploy/platform/kubernetes/features.mk
+++ b/deploy/platform/kubernetes/features.mk
@@ -99,14 +99,14 @@ deploy.feature-java-agent-injector: install-cert-manager
 	@kubectl label namespace --overwrite $(NAMESPACE) swck-injection=enabled
 	# @feature: java-agent-injector; we can update the agent's backend address in a single-node cluster firstly so that we don't need to add the same backend env for every java agent
 	@kubectl get configmap skywalking-swck-java-agent-configmap -n skywalking-swck-system -oyaml | sed "s/127.0.0.1/$(NAMESPACE)-$(BACKEND_SERVICE).$(NAMESPACE)/" | kubectl apply -f -
-	$(MAKE) deploy FEATURE_FLAGS=agent AGENTLESS=false SHOW_TIPS=false BACKEND_SERVICE=$(BACKEND_SERVICE)
+	$(MAKE) deploy FEATURE_FLAGS=agent TAG=$(TAG)-agentless AGENTLESS=false SHOW_TIPS=false BACKEND_SERVICE=$(BACKEND_SERVICE)
 
 # @feature: java-agent-injector; uninstall the swck operator and cert-manager
 .PHONY: undeploy.feature-java-agent-injector
 undeploy.feature-java-agent-injector:
 	@curl -Ls https://archive.apache.org/dist/skywalking/swck/${SWCK_OPERATOR_VERSION}/skywalking-swck-${SWCK_OPERATOR_VERSION}-bin.tgz | tar -zxf - -O ./config/operator-bundle.yaml | kubectl delete --ignore-not-found -f -
 	@kubectl delete --ignore-not-found -f https://github.com/jetstack/cert-manager/releases/download/${CERT_MANAGER_VERSION}/cert-manager.yaml
-	$(MAKE) undeploy FEATURE_FLAGS=agent AGENTLESS=false SHOW_TIPS=false BACKEND_SERVICE=$(BACKEND_SERVICE)
+	$(MAKE) undeploy FEATURE_FLAGS=agent TAG=$(TAG)-agentless AGENTLESS=false SHOW_TIPS=false BACKEND_SERVICE=$(BACKEND_SERVICE)
 
 .PHONY: open-function
 open-function: install-cert-manager