Skip to content

Commit

Permalink
chore: Update zookeeper chart.
Browse files Browse the repository at this point in the history
  • Loading branch information
dellnoantechnp committed Nov 17, 2023
1 parent dca4a7d commit 1905c4b
Show file tree
Hide file tree
Showing 15 changed files with 1,067 additions and 776 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- [x] prometheusAlert
- [x] kafka-*2.8.1*
- [x] zookeeper-*3.7.0*
- [x] [canal-server-*1.1.6*](https://github.com/alibaba/canal)
- [x] canal-server-*1.1.6* [https://github.com/alibaba/canal](https://github.com/alibaba/canal)



Expand Down
28 changes: 14 additions & 14 deletions charts/zookeeper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
annotations:
category: Infrastructure
apiVersion: v2
appVersion: 3.7.0
appVersion: 3.8.0
dependencies:
- name: common
repository: https://dellnoantechnp.github.io/helm-chart-xxl-job-admin/
tags:
- bitnami-common
version: 1.x.x
description: "[OpenSource by Bitnami] A centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services for distributed applications."
engine: gotpl
- name: common
repository: https://dellnoantechnp.github.io/helm-chart-xxl-job-admin/
tags:
- bitnami-common
version: 1.x.x
description: "[OpenSource by Bitnami] Apache ZooKeeper provides a reliable, centralized register of configuration
data and services for distributed applications."
home: https://github.com/bitnami/charts/tree/master/bitnami/zookeeper
icon: https://raw.githubusercontent.com/dellnoantechnp/helm-chart-xxl-job-admin/main/assets/stacks/zookeeper/img/zookeeper-stack-110x117.png
keywords:
- zookeeper
- zookeeper
maintainers:
- email: containers@bitnami.com
name: Bitnami
- email: containers@bitnami.com
name: Bitnami
name: zookeeper
sources:
- https://github.com/bitnami/bitnami-docker-zookeeper
- https://zookeeper.apache.org/
version: 7.6.1
- https://github.com/bitnami/bitnami-docker-zookeeper
- https://zookeeper.apache.org/
version: 9.2.0
388 changes: 226 additions & 162 deletions charts/zookeeper/README.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions charts/zookeeper/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ In order to replicate the container startup scripts execute this command:

{{- else }}

ZooKeeper can be accessed via port {{ .Values.service.port }} on the following DNS name from within your cluster:
ZooKeeper can be accessed via port {{ .Values.service.ports.client }} on the following DNS name from within your cluster:

{{ template "common.names.fullname" . }}.{{ template "zookeeper.namespace" . }}.svc.{{ .Values.clusterDomain }}

Expand All @@ -64,12 +64,12 @@ To connect to your ZooKeeper server from outside the cluster execute the followi
Watch the status with: 'kubectl get svc --namespace {{ template "zookeeper.namespace" . }} -w {{ template "common.names.fullname" . }}'

export SERVICE_IP=$(kubectl get svc --namespace {{ template "zookeeper.namespace" . }} {{ template "common.names.fullname" . }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
zkCli.sh $SERVICE_IP:{{ .Values.service.port }}
zkCli.sh $SERVICE_IP:{{ .Values.service.ports.client }}

{{- else if contains "ClusterIP" .Values.service.type }}

kubectl port-forward --namespace {{ template "zookeeper.namespace" . }} svc/{{ template "common.names.fullname" . }} {{ .Values.service.port }}:{{ .Values.containerPort }} &
zkCli.sh 127.0.0.1:{{ .Values.service.port }}
kubectl port-forward --namespace {{ template "zookeeper.namespace" . }} svc/{{ template "common.names.fullname" . }} {{ .Values.service.ports.client }}:{{ .Values.containerPorts.client }} &
zkCli.sh 127.0.0.1:{{ .Values.service.ports.client }}

{{- end }}
{{- end }}
Expand Down
Loading

0 comments on commit 1905c4b

Please sign in to comment.