tianshimoyi commented on issue #309:
URL: 
https://github.com/apache/pulsar-helm-chart/issues/309#issuecomment-1283463062

   @michaeljmarshall From the results, this step is executed incorrectly
   ```yaml
   #
   # Licensed to the Apache Software Foundation (ASF) under one
   # or more contributor license agreements.  See the NOTICE file
   # distributed with this work for additional information
   # regarding copyright ownership.  The ASF licenses this file
   # to you under the Apache License, Version 2.0 (the
   # "License"); you may not use this file except in compliance
   # with the License.  You may obtain a copy of the License at
   #
   #   http://www.apache.org/licenses/LICENSE-2.0
   #
   # Unless required by applicable law or agreed to in writing,
   # software distributed under the License is distributed on an
   # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
   # KIND, either express or implied.  See the License for the
   # specific language governing permissions and limitations
   # under the License.
   #
   {{- if or .Release.IsInstall .Values.initialize }}
   {{- if .Values.components.bookkeeper }}
   apiVersion: batch/v1
   kind: Job
   metadata:
     name: "{{ template "pulsar.fullname" . }}-{{ .Values.bookkeeper.component 
}}-init"
     namespace: {{ template "pulsar.namespace" . }}
     labels:
       {{- include "pulsar.standardLabels" . | nindent 4 }}
       component: "{{ .Values.bookkeeper.component }}-init"
   spec:
   # This feature was previously behind a feature gate for several Kubernetes 
versions and will default to true in 1.23 and beyond
   # 
https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
   {{- if .Values.job.ttl.enabled }}
     ttlSecondsAfterFinished: {{ .Values.job.ttl.secondsAfterFinished }}
   {{- end }}
     template:
       spec:
       {{- if and .Values.rbac.enabled .Values.rbac.psp }}
         serviceAccountName: "{{ template "pulsar.fullname" . }}-{{ 
.Values.bookkeeper.component }}"
       {{- end }}
         initContainers:
         - name: wait-zookeeper-ready
           image: "{{ .Values.images.bookie.repository }}:{{ 
.Values.images.bookie.tag }}"
           imagePullPolicy: {{ .Values.images.bookie.pullPolicy }}
           command: ["sh", "-c"]
           args:
             - >-
               {{- if $zk:=.Values.pulsar_metadata.userProvidedZookeepers }}
               until bin/pulsar zookeeper-shell -server {{ $zk }} ls {{ or 
.Values.metadataPrefix "/" }}; do
                 echo "user provided zookeepers {{ $zk }} are unreachable... 
check in 3 seconds ..." && sleep 3;
               done;
               {{ else }}
               until nslookup -ty=a {{ template "pulsar.fullname" . }}-{{ 
.Values.zookeeper.component }}-{{ add (.Values.zookeeper.replicaCount | int) -1 
}}.{{ template "pulsar.fullname" . }}-{{ .Values.zookeeper.component }}.{{ 
template "pulsar.namespace" . }}; do
                 sleep 3;
               done;
               {{- end}}
         containers:
         - name: "{{ template "pulsar.fullname" . }}-{{ 
.Values.bookkeeper.component }}-init"
           image: "{{ .Values.images.bookie.repository }}:{{ 
.Values.images.bookie.tag }}"
           imagePullPolicy: {{ .Values.images.bookie.pullPolicy }}
         {{- if .Values.bookkeeper.metadata.resources }}
           resources:
   {{ toYaml .Values.bookkeeper.metadata.resources | indent 10 }}
         {{- end }}
           command: ["sh", "-c"]
           args:
             - >
               bin/apply-config-from-env.py conf/bookkeeper.conf;
               {{- include "pulsar.toolset.zookeeper.tls.settings" . | nindent 
12 }}
               if bin/bookkeeper shell whatisinstanceid; then
                   echo "bookkeeper cluster already initialized";
               else
                    {{- if not (eq .Values.metadataPrefix "") }} 
                    bin/bookkeeper org.apache.zookeeper.ZooKeeperMain -server 
{{ template "pulsar.fullname" . }}-{{ .Values.zookeeper.component }} create {{ 
.Values.metadataPrefix }} 'created for pulsar cluster "{{ template 
"pulsar.cluster.name" . }}"' && 
                    {{- end }} 
                    bin/bookkeeper shell initnewcluster; 
               fi
               {{- if .Values.extraInitCommand }}
                 {{ .Values.extraInitCommand }}
               {{- end }}
         {{- if and .Values.rbac.enabled .Values.rbac.psp }}
           securityContext:
             readOnlyRootFilesystem: false
         {{- end }}
           envFrom:
           - configMapRef:
               name: "{{ template "pulsar.fullname" . }}-{{ 
.Values.bookkeeper.component }}"
           volumeMounts:
           {{- include "pulsar.toolset.certs.volumeMounts" . | nindent 8 }}
         volumes:
         {{- include "pulsar.toolset.certs.volumes" . | nindent 6 }}
         restartPolicy: Never
   {{- end }}
   {{- end }}
   
   ```
   ![截屏2022-10-19 下午1 44 
52](https://user-images.githubusercontent.com/68532999/196607145-1366f69b-9ee8-4460-819d-96a8cc6dc380.png)
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to