diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6e32e7ff..1686fa76 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,3 +11,4 @@ In order for changes to be captured in changelog correctly please add one of the - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug fixes / features) - [ ] CI passes +- [ ] Changes to ports, services, or other networking have been tested with **istio** diff --git a/charts/bindplane/Chart.yaml b/charts/bindplane/Chart.yaml index 44bd0e6b..fbcca460 100644 --- a/charts/bindplane/Chart.yaml +++ b/charts/bindplane/Chart.yaml @@ -3,7 +3,7 @@ name: bindplane description: BindPlane OP is an observability pipeline. type: application # The chart's version -version: 1.13.0 +version: 1.13.1 # The BindPlane OP tagged release. If the user does not # set the `image.tag` values option, this version is used. appVersion: 1.63.1 diff --git a/charts/bindplane/README.md b/charts/bindplane/README.md index 2e9b6ff9..7229521c 100644 --- a/charts/bindplane/README.md +++ b/charts/bindplane/README.md @@ -1,6 +1,6 @@ # bindplane -![Version: 1.12.0](https://img.shields.io/badge/Version-1.12.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.63.1](https://img.shields.io/badge/AppVersion-1.63.1-informational?style=flat-square) +![Version: 1.13.1](https://img.shields.io/badge/Version-1.13.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.63.1](https://img.shields.io/badge/AppVersion-1.63.1-informational?style=flat-square) BindPlane OP is an observability pipeline. diff --git a/charts/bindplane/templates/bindplane-jobs.yaml b/charts/bindplane/templates/bindplane-jobs.yaml index d5138ede..f0df12c8 100644 --- a/charts/bindplane/templates/bindplane-jobs.yaml +++ b/charts/bindplane/templates/bindplane-jobs.yaml @@ -280,7 +280,7 @@ spec: fieldRef: fieldPath: metadata.name - name: BINDPLANE_NATS_CLIENT_ENDPOINT - value: nats://{{ include "bindplane.fullname" . }}-nats-client-headless.{{ .Release.Namespace }}.svc.cluster.local:4222 + value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}.svc.cluster.local:4222 - name: BINDPLANE_NATS_CLIENT_SUBJECT value: bindplane-event-bus {{- end }} diff --git a/charts/bindplane/templates/bindplane-nats.yaml b/charts/bindplane/templates/bindplane-nats.yaml index 6f9cac37..9b72c860 100644 --- a/charts/bindplane/templates/bindplane-nats.yaml +++ b/charts/bindplane/templates/bindplane-nats.yaml @@ -48,7 +48,7 @@ spec: - containerPort: 3001 name: http - containerPort: 4222 - name: nats-client + name: tcp - containerPort: 6222 name: nats-cluster - containerPort: 8222 diff --git a/charts/bindplane/templates/bindplane.yaml b/charts/bindplane/templates/bindplane.yaml index eb7daaaf..4437f364 100644 --- a/charts/bindplane/templates/bindplane.yaml +++ b/charts/bindplane/templates/bindplane.yaml @@ -295,7 +295,7 @@ spec: fieldRef: fieldPath: metadata.name - name: BINDPLANE_NATS_CLIENT_ENDPOINT - value: nats://{{ include "bindplane.fullname" . }}-nats-client-headless.{{ .Release.Namespace }}.svc.cluster.local:4222 + value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}.svc.cluster.local:4222 - name: BINDPLANE_NATS_CLIENT_SUBJECT value: bindplane-event-bus {{- end }} diff --git a/charts/bindplane/templates/service.yaml b/charts/bindplane/templates/service.yaml index 69c903be..5b59c265 100644 --- a/charts/bindplane/templates/service.yaml +++ b/charts/bindplane/templates/service.yaml @@ -61,7 +61,7 @@ spec: apiVersion: v1 kind: Service metadata: - name: {{ include "bindplane.fullname" . }}-nats-client-headless + name: {{ include "bindplane.fullname" . }}-nats-headless namespace: {{ .Release.Namespace }} annotations: {{- if .Values.service.annotations }} @@ -77,8 +77,8 @@ spec: ports: - port: 4222 protocol: TCP - targetPort: nats-client - name: nats-client + targetPort: tcp + name: tcp selector: app.kubernetes.io/name: {{ include "bindplane.name" . }} app.kubernetes.io/stack: bindplane