pulsar-helm-chart icon indicating copy to clipboard operation
pulsar-helm-chart copied to clipboard

Bump up zoonavigator version

Open yabinmeng opened this issue 3 years ago • 2 comments

The current zoonavigator docker image version in the helm chart is 0.6 which is deprecated. Bump up the version to the latest version.

yabinmeng avatar Dec 17 '21 19:12 yabinmeng

This PR will fix https://github.com/datastax/pulsar-helm-chart/issues/88.

michaeljmarshall avatar Dec 17 '21 23:12 michaeljmarshall

Just this change did not work for me, but a modified deployment for zoonavigator that had the following spec section worked:

    spec:
      containers:
        - name: pulsar-zoonavigator
          image: elkozmon/zoonavigator:1.1.1
          ports:
            - name: http
              containerPort: 8001
              protocol: TCP
          env:
            - name: HTTP_PORT
              value: '8001'
            - name: CONNECTION_PULSARZK_CONN
              value: pulsar-zookeeper-0.pulsar-zookeeper:2181
            - name: CONNECTION_PULSARZK_NAME
              value: Pulsar ZooKeeper
            - name: AUTO_CONNECT_CONNECTION_ID
              value: PULSARZK
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
          terminationMessagePath: /dev/termination-log
          terminationMessagePolicy: File
          imagePullPolicy: IfNotPresent

Note the removal of the secondary container, and the modified ENV variables.

robparrott avatar Feb 07 '22 20:02 robparrott