Skip to content

Commit

Permalink
[FIX] add rate message on mqtt (#19)
Browse files Browse the repository at this point in the history
* [FIX] add rate message on mqtt

* [FIX] bump version
  • Loading branch information
etaques authored Apr 22, 2022
1 parent 969d016 commit 5d331e8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/orb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: orb
description: Orb Observability Platform
icon: https://avatars1.githubusercontent.com/u/13207490
type: application
version: 1.0.16
version: 1.0.17
appVersion: "0.14.0"
home: https://getorb.io
sources:
Expand Down
2 changes: 2 additions & 0 deletions charts/orb/templates/adapter_mqtt-statefulstet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ spec:
value: "-1"
- name: DOCKER_VERNEMQ_MAX_ONLINE_MESSAGES
value: "-1"
- name: DOCKER_VERNEMQ_MAX_MESSAGE_RATE
value: "5"
- name: DOCKER_VERNEMQ_MAX_INFLIGHT_MESSAGES
value: "0"
- name: DOCKER_VERNEMQ_PLUGINS__VMQ_PASSWD
Expand Down
8 changes: 4 additions & 4 deletions charts/orb/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
{{- if .Values.ingress.annotations-nginx }}
{{- if .Values.ingress.annotationsNginx }}
annotations:
{{ toYaml .Values.ingress.annotations-nginx | indent 4 }}
{{ toYaml .Values.ingress.annotationsNginx | indent 4 }}
{{- end }}
name: {{ .Release.Name }}-nginx-ingress
spec:
Expand Down Expand Up @@ -37,9 +37,9 @@ spec:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
{{- if .Values.ingress.annotations-nginx-rewrite }}
{{- if .Values.ingress.annotationsNginxRewrite }}
annotations:
{{ toYaml .Values.ingress.annotations-nginx-rewrite | indent 4 }}
{{ toYaml .Values.ingress.annotationsNginxRewrite | indent 4 }}
{{- end }}
name: {{ .Release.Name }}-nginx-rewrite-ingress
spec:
Expand Down
4 changes: 2 additions & 2 deletions charts/orb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ smtp:

ingress:
ingressClassName: "nginx"
annotations-nginx:
annotationsNginx:
cert-manager.io/issuer: "letsencrypt-prod"
annotations-nginx-rewrite:
annotationsNginxRewrite:
cert-manager.io/issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/rewrite-target: /$1
hostname: ""
Expand Down

0 comments on commit 5d331e8

Please sign in to comment.