From 5c3db055434ca79691400457d607d3be6c5545cd Mon Sep 17 00:00:00 2001 From: mugioka Date: Thu, 24 Mar 2022 02:58:17 +0900 Subject: [PATCH] fix: panope Closes https://github.com/7knot/helm-charts/issues/37. --- charts/panope/Chart.yaml | 2 +- charts/panope/templates/agent/service.yaml | 4 ++-- charts/panope/templates/observer/service.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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