Skip to content

Commit

Permalink
Update kuzzle to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Feb 1, 2023
1 parent 5ea06c1 commit ff3a347
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions charts/kuzzle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 0.3.0
version: 1.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 2.1.0
appVersion: 1.0.0
10 changes: 2 additions & 8 deletions charts/kuzzle/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,11 @@ spec:
targetPort: {{ .Values.entrypoints.cluster_sync.targetPort }}
protocol: TCP
name: cluster-sync
{{- with .Values.entrypoints.mqtt }}
{{- with .Values.extraEntrypoints }}
- port: {{ .port }}
targetPort: {{ .targetPort }}
protocol: TCP
name: kuzzle-mqtt
{{- end }}
{{- with .Values.entrypoints.debug }}
- port: {{ .port }}
targetPort: {{ .targetPort }}
protocol: TCP
name: kuzzle-debug
name: {{ .name }}
{{- end }}
selector:
{{- include "kuzzle.selectorLabels" . | nindent 4 }}
11 changes: 7 additions & 4 deletions charts/kuzzle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,19 @@ entrypoints:
http:
port: 7512
targetPort: 7512
mqtt:
port: 1883
targetPort: 1883
cluster_command:
port: 7510
targetPort: 7510
cluster_sync:
port: 7511
targetPort: 7511
debug:

extraEntrypoints:
- name: mqtt
port: 1883
targetPort: 1883

- name: debug
port: 9229
targetPort: 9229

Expand Down

0 comments on commit ff3a347

Please sign in to comment.