diff --git a/charts/panope/Chart.yaml b/charts/panope/Chart.yaml index 87b4b88..6abbd28 100644 --- a/charts/panope/Chart.yaml +++ b/charts/panope/Chart.yaml @@ -15,7 +15,7 @@ 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. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.6.2 +version: 0.6.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/panope/templates/agent/service.yaml b/charts/panope/templates/agent/service.yaml index 6a35f93..fc7ffe2 100644 --- a/charts/panope/templates/agent/service.yaml +++ b/charts/panope/templates/agent/service.yaml @@ -15,9 +15,9 @@ metadata: spec: ports: - name: metrics - port: {{ .Values.agent.configMap.metricsPort | int }} + port: {{ .Values.agent.configMap.metricsPort | default 2112 }} protocol: TCP - targetPort: {{ .Values.agent.configMap.metricsPort | int }} + targetPort: {{ .Values.agent.configMap.metricsPort | default 2112 }} selector: {{- include "panope.agent.selectorLabels" . | nindent 4 }} sessionAffinity: None diff --git a/charts/panope/templates/observer/service.yaml b/charts/panope/templates/observer/service.yaml index 065b1e7..0d8a093 100644 --- a/charts/panope/templates/observer/service.yaml +++ b/charts/panope/templates/observer/service.yaml @@ -15,9 +15,9 @@ metadata: spec: ports: - name: metrics - port: {{ .Values.observer.configMap.metricsPort | int }} + port: {{ .Values.observer.configMap.metricsPort | default 2112 }} protocol: TCP - targetPort: {{ .Values.observer.configMap.metricsPort | int }} + targetPort: {{ .Values.observer.configMap.metricsPort | default 2112 }} selector: {{- include "panope.observer.selectorLabels" . | nindent 4 }} sessionAffinity: None