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 2023/02/21 09:30:40 UTC

[skywalking-kubernetes] branch master updated: Keep the job name prefix the same as OAP Deployment name (#106)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e79906b  Keep the job name prefix the same as OAP Deployment name (#106)
e79906b is described below

commit e79906bdd46d492a20a6c49804805b4a3a4794ff
Author: innerpeacez <in...@gmail.com>
AuthorDate: Tue Feb 21 17:30:33 2023 +0800

    Keep the job name prefix the same as OAP Deployment name (#106)
---
 chart/skywalking/templates/oap-init.job.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chart/skywalking/templates/oap-init.job.yaml b/chart/skywalking/templates/oap-init.job.yaml
index 71b06e8..c5db286 100644
--- a/chart/skywalking/templates/oap-init.job.yaml
+++ b/chart/skywalking/templates/oap-init.job.yaml
@@ -18,7 +18,7 @@
 apiVersion: batch/v1
 kind: Job
 metadata:
-  name: "{{ .Release.Name }}-oap-init"
+  name: "{{ template "skywalking.oap.fullname" . }}-init"
   labels:
     app: {{ template "skywalking.name" . }}
     chart: {{ .Chart.Name }}-{{ .Chart.Version }}