Compare commits
2 Commits
user-monit
...
kube-prome
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d4d467e28 | ||
|
|
28b1c17e13 |
@@ -16,6 +16,6 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: quay.io/acend/example-web-python
|
- image: quay.io/acend/example-web-python
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: Always
|
||||||
name: example-web-python
|
name: example-web-python
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
|
|||||||
23
charts/user-monitoring-stack/.helmignore
Normal file
23
charts/user-monitoring-stack/.helmignore
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*.orig
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
6
charts/user-monitoring-stack/Chart.lock
Normal file
6
charts/user-monitoring-stack/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: kube-prometheus-stack
|
||||||
|
repository: https://prometheus-community.github.io/helm-charts
|
||||||
|
version: 51.5.3
|
||||||
|
digest: sha256:8e25b83cde5acfd903c3e45f30b9ae28201f9dd68daab1aeca709f1185608916
|
||||||
|
generated: "2023-10-12T13:25:38.219319684+02:00"
|
||||||
29
charts/user-monitoring-stack/Chart.yaml
Normal file
29
charts/user-monitoring-stack/Chart.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: user-monitoring-stack
|
||||||
|
description: A Helm chart for Kubernetes
|
||||||
|
|
||||||
|
# A chart can be either an 'application' or a 'library' chart.
|
||||||
|
#
|
||||||
|
# Application charts are a collection of templates that can be packaged into versioned archives
|
||||||
|
# to be deployed.
|
||||||
|
#
|
||||||
|
# Library charts provide useful utilities or functions for the chart developer. They're included as
|
||||||
|
# a dependency of application charts to inject those utilities and functions into the rendering
|
||||||
|
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
|
||||||
|
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.1.0
|
||||||
|
|
||||||
|
# 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
|
||||||
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
|
# It is recommended to use it with quotes.
|
||||||
|
appVersion: "1.16.0"
|
||||||
|
dependencies:
|
||||||
|
- name: kube-prometheus-stack
|
||||||
|
condition: promstack.enabled
|
||||||
|
version: "51.5.3"
|
||||||
|
repository: "https://prometheus-community.github.io/helm-charts"
|
||||||
Binary file not shown.
73
charts/user-monitoring-stack/values.yaml
Normal file
73
charts/user-monitoring-stack/values.yaml
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
promstack:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
kube-prometheus-stack:
|
||||||
|
prometheus:
|
||||||
|
enabled: true
|
||||||
|
prometheusSpec:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 400Mi
|
||||||
|
scrapeInterval: 60s
|
||||||
|
serviceMonitorNamespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
user: <user>
|
||||||
|
serviceMonitorSelector: {}
|
||||||
|
podMonitorNamespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
user: <user>
|
||||||
|
podMonitorSelector: {}
|
||||||
|
probeNamespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
user: <user>
|
||||||
|
ruleSelectorNilUsesHelmValues: false
|
||||||
|
serviceMonitorSelectorNilUsesHelmValues: false
|
||||||
|
podMonitorSelectorNilUsesHelmValues: false
|
||||||
|
probeSelectorNilUsesHelmValues: false
|
||||||
|
serviceAccount:
|
||||||
|
create: true
|
||||||
|
name: "prometheus-<user>"
|
||||||
|
grafana:
|
||||||
|
enabled: false
|
||||||
|
alertmanager:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
kubernetesServiceMonitors:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# not relevant for the lab
|
||||||
|
crds:
|
||||||
|
enabled: false
|
||||||
|
kubeProxy:
|
||||||
|
enabled: false
|
||||||
|
kubeScheduler:
|
||||||
|
enabled: false
|
||||||
|
kubeControllerManager:
|
||||||
|
enabled: false
|
||||||
|
kubeEtcd:
|
||||||
|
enabled: false
|
||||||
|
kubeApiServer:
|
||||||
|
enabled: false
|
||||||
|
kubelet:
|
||||||
|
enabled: false
|
||||||
|
coreDns:
|
||||||
|
enabled: false
|
||||||
|
kubeStateMetrics:
|
||||||
|
enabled: false
|
||||||
|
nodeExporter:
|
||||||
|
enabled: false
|
||||||
|
prometheusOperator:
|
||||||
|
enabled: false
|
||||||
|
kubeletService:
|
||||||
|
enabled: false
|
||||||
|
defaultRules:
|
||||||
|
create: false
|
||||||
|
|
||||||
|
|
||||||
|
global:
|
||||||
|
rbac:
|
||||||
|
create: false
|
||||||
|
createAggregateClusterRoles: false
|
||||||
@@ -15,7 +15,7 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# 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.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.2.6
|
version: 0.2.5
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# 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
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
{{- define "blackboxexporter.svc" }}
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: blackbox
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: blackbox-exporter
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
port: 9115
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 9115
|
|
||||||
selector:
|
|
||||||
app.kubernetes.io/name: blackbox-exporter
|
|
||||||
type: ClusterIP
|
|
||||||
{{- end }}
|
|
||||||
@@ -16,7 +16,7 @@ stringData:
|
|||||||
access: proxy
|
access: proxy
|
||||||
editable: false
|
editable: false
|
||||||
type: prometheus
|
type: prometheus
|
||||||
url: http://thanos-query:10902
|
url: http://thanos-query.{{ .Values.user }}-monitoring.svc.cluster.local:10902
|
||||||
version: 1
|
version: 1
|
||||||
{{- if .Values.grafana.datasources }}
|
{{- if .Values.grafana.datasources }}
|
||||||
{{- toYaml .Values.grafana.datasources | nindent 6 }}
|
{{- toYaml .Values.grafana.datasources | nindent 6 }}
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
{{- define "grafana.servicemonitor" }}
|
|
||||||
---
|
|
||||||
apiVersion: monitoring.coreos.com/v1
|
|
||||||
kind: ServiceMonitor
|
|
||||||
metadata:
|
|
||||||
name: grafana-monitor
|
|
||||||
spec:
|
|
||||||
endpoints:
|
|
||||||
- basicAuth:
|
|
||||||
password:
|
|
||||||
name: basic-auth
|
|
||||||
key: {{ .Values.user }}
|
|
||||||
username:
|
|
||||||
name: basic-auth
|
|
||||||
key: grafana_user
|
|
||||||
interval: 60s
|
|
||||||
port: http
|
|
||||||
scheme: http
|
|
||||||
path: /metrics
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app.kubernetes.io/name: grafana
|
|
||||||
{{- end }}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
{{- define "prometheus.servicemonitor" }}
|
|
||||||
---
|
|
||||||
apiVersion: monitoring.coreos.com/v1
|
|
||||||
kind: ServiceMonitor
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: prometheus
|
|
||||||
user: {{ .Values.user }}
|
|
||||||
name: {{ .Values.user }}-prometheus-servicemonitor
|
|
||||||
spec:
|
|
||||||
endpoints:
|
|
||||||
- path: /metrics
|
|
||||||
port: web
|
|
||||||
namespaceSelector:
|
|
||||||
matchNames:
|
|
||||||
- {{ .Values.user }}-monitoring
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
operated-prometheus: 'true'
|
|
||||||
{{- end }}
|
|
||||||
@@ -7,10 +7,6 @@ metadata:
|
|||||||
app.kubernetes.io/name: prometheus
|
app.kubernetes.io/name: prometheus
|
||||||
name: prometheus
|
name: prometheus
|
||||||
spec:
|
spec:
|
||||||
{{- if .Values.query.enabled }}
|
|
||||||
thanos:
|
|
||||||
image: quay.io/thanos/thanos:v0.32.3
|
|
||||||
{{- end }}
|
|
||||||
scrapeInterval: 60s
|
scrapeInterval: 60s
|
||||||
serviceAccountName: prometheus-{{ .Values.user }}
|
serviceAccountName: prometheus-{{ .Values.user }}
|
||||||
serviceMonitorNamespaceSelector:
|
serviceMonitorNamespaceSelector:
|
||||||
|
|||||||
@@ -25,11 +25,10 @@ spec:
|
|||||||
- --query.replica-label=thanos_ruler_replica
|
- --query.replica-label=thanos_ruler_replica
|
||||||
- --endpoint=prometheus-operated.{{ .Values.user }}-monitoring.svc.cluster.local:10901
|
- --endpoint=prometheus-operated.{{ .Values.user }}-monitoring.svc.cluster.local:10901
|
||||||
- --endpoint=thanos-ruler-operated.{{ .Values.user }}-monitoring.svc.cluster.local:10901
|
- --endpoint=thanos-ruler-operated.{{ .Values.user }}-monitoring.svc.cluster.local:10901
|
||||||
- --store=dnssrv+prometheus-operated.{{ .Values.user }}-monitoring.svc.cluster.local
|
- --endpoint=prometheus-operated.monitoring.svc.cluster.local:10901
|
||||||
- --store=dnssrv+_web._tcp.prometheus-operated.{{ .Values.user }}-monitoring.svc.cluster.local
|
|
||||||
- --store=dnssrv+_grpc._tcp.kube-prometheus-stack-thanos-discovery.monitoring.svc.cluster.local
|
- --store=dnssrv+_grpc._tcp.kube-prometheus-stack-thanos-discovery.monitoring.svc.cluster.local
|
||||||
- --store.unhealthy-timeout=3d
|
- --store.unhealthy-timeout=3d
|
||||||
image: quay.io/thanos/thanos:v0.32.3
|
image: quay.io/thanos/thanos:v0.25.1
|
||||||
name: thanos-query
|
name: thanos-query
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 10902
|
- containerPort: 10902
|
||||||
|
|||||||
@@ -4,13 +4,6 @@
|
|||||||
{{- template "alertmanager.alertmanager" . }}
|
{{- template "alertmanager.alertmanager" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
# blackboxexporter
|
|
||||||
{{- if .Values.blackboxexporter.enabled }}
|
|
||||||
{{- template "blackboxexporter.cm" . }}
|
|
||||||
{{- template "blackboxexporter.deploy" . }}
|
|
||||||
{{- template "blackboxexporter.svc" . }}
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
# grafana
|
# grafana
|
||||||
{{- if .Values.grafana.enabled }}
|
{{- if .Values.grafana.enabled }}
|
||||||
{{- template "grafana.datasource" . }}
|
{{- template "grafana.datasource" . }}
|
||||||
@@ -19,7 +12,6 @@
|
|||||||
{{- template "grafana.svc" . }}
|
{{- template "grafana.svc" . }}
|
||||||
{{- template "grafana.sa" . }}
|
{{- template "grafana.sa" . }}
|
||||||
{{- template "grafana.deploy" . }}
|
{{- template "grafana.deploy" . }}
|
||||||
{{- template "grafana.servicemonitor" . }}
|
|
||||||
{{- template "grafana.ingress" . }}
|
{{- template "grafana.ingress" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
@@ -27,7 +19,6 @@
|
|||||||
{{- if .Values.prometheus.enabled }}
|
{{- if .Values.prometheus.enabled }}
|
||||||
{{- template "prometheus.ingress" . }}
|
{{- template "prometheus.ingress" . }}
|
||||||
{{- template "prometheus.prometheus" . }}
|
{{- template "prometheus.prometheus" . }}
|
||||||
{{- template "prometheus.servicemonitor" . }}
|
|
||||||
{{- template "prometheus.role" . }}
|
{{- template "prometheus.role" . }}
|
||||||
{{- template "prometheus.rolebinding" . }}
|
{{- template "prometheus.rolebinding" . }}
|
||||||
{{- template "prometheus.sa" . }}
|
{{- template "prometheus.sa" . }}
|
||||||
|
|||||||
@@ -1,22 +1,32 @@
|
|||||||
user: <user> # Replace me
|
user: <user> # Replace me
|
||||||
|
|
||||||
# prometheus
|
# prometheus
|
||||||
prometheus:
|
prometheus:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# thanos-query
|
# thanos-query
|
||||||
query:
|
query:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# grafana
|
# grafana
|
||||||
grafana:
|
grafana:
|
||||||
|
datasources:
|
||||||
|
- name: prometheus
|
||||||
|
access: proxy
|
||||||
|
editable: false
|
||||||
|
type: prometheus
|
||||||
|
url: http://prometheus-operated.<user>-monitoring.svc.cluster.local:9090
|
||||||
enabled: false
|
enabled: false
|
||||||
# blackboxexporter
|
|
||||||
blackboxexporter:
|
|
||||||
enabled: false
|
|
||||||
# pushgateway
|
# pushgateway
|
||||||
pushgateway:
|
pushgateway:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# alertmanager
|
# alertmanager
|
||||||
alertmanager:
|
alertmanager:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# thanos-ruler
|
# thanos-ruler
|
||||||
ruler:
|
ruler:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
Reference in New Issue
Block a user