Skip to content

Commit

Permalink
remove svc.cluster.local fqdn
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirianni committed Dec 12, 2024
1 parent 8ed35f9 commit afb18ae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/bindplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: bindplane
description: BindPlane OP is an observability pipeline.
type: application
# The chart's version
version: 1.22.0
version: 1.22.1
# The BindPlane OP tagged release. If the user does not
# set the `image.tag` values option, this version is used.
appVersion: 1.84.0
Expand Down
2 changes: 1 addition & 1 deletion charts/bindplane/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bindplane

![Version: 1.22.0](https://img.shields.io/badge/Version-1.22.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.84.0](https://img.shields.io/badge/AppVersion-1.84.0-informational?style=flat-square)
![Version: 1.22.1](https://img.shields.io/badge/Version-1.22.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.84.0](https://img.shields.io/badge/AppVersion-1.84.0-informational?style=flat-square)

BindPlane OP is an observability pipeline.

Expand Down
4 changes: 2 additions & 2 deletions charts/bindplane/templates/bindplane-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ spec:
{{- if .Values.config.server_url }}
value: {{ .Values.config.server_url }}
{{- else }}
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local:3001
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}:3001
{{- end }}
{{ if eq .Values.auth.type "system" }}
- name: BINDPLANE_USERNAME
Expand Down Expand Up @@ -305,7 +305,7 @@ spec:
fieldRef:
fieldPath: metadata.name
- name: BINDPLANE_NATS_CLIENT_ENDPOINT
value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}.svc.cluster.local:4222
value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}:4222
- name: BINDPLANE_NATS_CLIENT_SUBJECT
value: bindplane-event-bus
{{- end }}
Expand Down
6 changes: 3 additions & 3 deletions charts/bindplane/templates/bindplane-nats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ spec:
{{- if .Values.config.server_url }}
value: {{ .Values.config.server_url }}
{{- else }}
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local:3001
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}:3001
{{- end }}
{{ if eq .Values.auth.type "system" }}
- name: BINDPLANE_USERNAME
Expand Down Expand Up @@ -188,10 +188,10 @@ spec:
value: "6222"
- name: BINDPLANE_NATS_SERVER_CLUSTER_ROUTES
{{ if eq .Values.nats.deploymentType "StatefulSet" }}
value: nats://{{ include "bindplane.fullname" . }}-nats-0.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}.svc.cluster.local:6222,nats://{{ include "bindplane.fullname" . }}-nats-1.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}.svc.cluster.local:6222,nats://{{ include "bindplane.fullname" . }}-nats-2.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}.svc.cluster.local:6222
value: nats://{{ include "bindplane.fullname" . }}-nats-0.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}:6222,nats://{{ include "bindplane.fullname" . }}-nats-1.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}:6222,nats://{{ include "bindplane.fullname" . }}-nats-2.{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}:6222
{{ end }}
{{ if eq .Values.nats.deploymentType "Deployment" }}
value: nats://{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}.svc.cluster.local:6222
value: nats://{{ include "bindplane.fullname" . }}-nats-cluster-headless.{{ .Release.Namespace }}:6222
{{ end }}
- name: BINDPLANE_NATS_CLIENT_NAME
valueFrom:
Expand Down
4 changes: 2 additions & 2 deletions charts/bindplane/templates/bindplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ spec:
{{- if .Values.config.server_url }}
value: {{ .Values.config.server_url }}
{{- else }}
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local:3001
value: http://{{ include "bindplane.fullname" . }}.{{ .Release.Namespace }}:3001
{{- end }}
{{ if eq .Values.auth.type "system" }}
- name: BINDPLANE_USERNAME
Expand Down Expand Up @@ -334,7 +334,7 @@ spec:
fieldRef:
fieldPath: metadata.name
- name: BINDPLANE_NATS_CLIENT_ENDPOINT
value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}.svc.cluster.local:4222
value: nats://{{ include "bindplane.fullname" . }}-nats-headless.{{ .Release.Namespace }}:4222
- name: BINDPLANE_NATS_CLIENT_SUBJECT
value: bindplane-event-bus
{{- end }}
Expand Down

0 comments on commit afb18ae

Please sign in to comment.