Skip to content

Commit

Permalink
Merge pull request #38 from 7knot/fix/panope
Browse files Browse the repository at this point in the history
fix: panope
  • Loading branch information
mugioka authored Mar 24, 2022
2 parents 0fff29a + 5c3db05 commit 26a9a36
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/panope/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/panope/templates/agent/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/panope/templates/observer/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 26a9a36

Please sign in to comment.