-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add features from vector-aggregator chart (#45)
* feat(vector): Add dnsConfig and dnsPolicy support Signed-off-by: Spencer Gilbert <[email protected]> * feat(vector): Add support for an existing ConfigMap Signed-off-by: Spencer Gilbert <[email protected]> * feat(vector): Add support for termination period and management policy Signed-off-by: Spencer Gilbert <[email protected]> * feat(vector): Add PodMonitor and update default prometheus port name Signed-off-by: Spencer Gilbert <[email protected]> * chore(vector): Run helm-docs Signed-off-by: Spencer Gilbert <[email protected]> * feat(vector): Support existing ConfigMap for HAProxy Signed-off-by: Spencer Gilbert <[email protected]> * chore(vector): Rename vector ci files for better organization Signed-off-by: Spencer Gilbert <[email protected]> * fix(vector): Use full url and path in NOTES template `top` fails without the base and path Signed-off-by: Spencer Gilbert <[email protected]> * chore(vector): Rename remaining vector ci files Signed-off-by: Spencer Gilbert <[email protected]>
- Loading branch information
1 parent
39f49e3
commit af3ad49
Showing
16 changed files
with
111 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{{- if and .Values.podMonitor.enabled (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") }} | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PodMonitor | ||
metadata: | ||
name: {{ include "vector.fullname" . }} | ||
labels: | ||
{{- include "vector.labels" . | nindent 4 }} | ||
spec: | ||
jobLabel: {{ .Values.podMonitor.jobLabel }} | ||
selector: | ||
matchLabels: | ||
{{- include "vector.selectorLabels" . | nindent 6 }} | ||
namespaceSelector: | ||
matchNames: | ||
- {{ .Release.Namespace }} | ||
podMetricsEndpoints: | ||
- port: {{ .Values.podMonitor.port }} | ||
path: {{ .Values.podMonitor.path }} | ||
{{- with .Values.podMonitor.relabelings }} | ||
relabelings: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.podMonitor.metricRelabelings }} | ||
metricRelabelings: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters