Compare commits

..

7 Commits

Author SHA1 Message Date
volker.raschek c1a2a098c8 doc(README): adapt warning blockquote
continuous-integration/drone/push Build is passing
2024-11-25 23:25:03 +01:00
volker.raschek 085a68c60c revert(README): adapt warning blockquote
This reverts commit 98fe8fe2a4.
2024-11-25 23:24:04 +01:00
volker.raschek 98fe8fe2a4 doc(README): adapt warning blockquote
continuous-integration/drone/push Build is failing
2024-11-25 23:17:33 +01:00
volker.raschek 7d02c5f7b3 doc(README): adapt warning blockquote
continuous-integration/drone/push Build is passing
2024-11-25 23:14:39 +01:00
CSRBot cbdf696a4e chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.42.0
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-11-25 20:26:07 +00:00
volker.raschek 42af0f9739 fix(serviceAccount): remove top level dict .spec
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2024-11-25 19:35:46 +01:00
volker.raschek 5c0f2fb310 core(chart): add further chart labels for search engine
continuous-integration/drone/push Build is passing
2024-11-25 19:08:36 +01:00
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ steps:
- name: markdown lint
commands:
- markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.41.0
image: git.cryptic.systems/volker.raschek/markdownlint:0.42.0
resources:
limits:
cpu: 150
+3 -2
View File
@@ -10,8 +10,9 @@ appVersion: "0.15.0"
keywords:
- prometheus
- prometheus exporter
- postgres
- prometheus-exporter
- postgres-postgres-exporter
- postgres-exporter
sources:
- https://github.com/prometheus-community/postgres_exporter
+3 -3
View File
@@ -66,9 +66,9 @@ The following examples serve as individual configurations and as inspiration for
The first example shows how to deploy the metric exporter with TLS encryption. The verification of the custom TLS
certification will be skipped by Prometheus.
> [!WARN]
> A TLS secret with the name `prometheus-postgresql-exporter-http` containing a `ca.crt`, `tls.key` and `tls.crt` is
> already present.
> [!WARNING]
> The secret `prometheus-postgresql-exporter-http` containing the TLS certificate is already present. The keys `ca.crt`,
> `tls.key` and `tls.crt` of the secret can be mounted into the container filesystem for TLS authentication / encryption.
```bash
helm install prometheus-exporters/prometheus-postgres-exporter prometheus-postgres-exporter \
@@ -13,7 +13,6 @@ metadata:
{{- end }}
name: {{ include "prometheus-postgres-exporter.fullname" . }}
namespace: {{ .Release.Namespace }}
spec:
automountServiceAccountToken: {{ .Values.serviceAccount.new.automountServiceAccountToken }}
{{- with .Values.serviceAccount.new.imagePullSecrets }}
imagePullSecrets:
@@ -29,12 +29,12 @@ tests:
- notExists:
path: metadata.labels
- equal:
path: spec.automountServiceAccountToken
path: automountServiceAccountToken
value: true
- notExists:
path: spec.imagePullSecrets
path: imagePullSecrets
- notExists:
path: spec.secrets
path: secrets
- it: Rendering serviceAccount with custom values.
@@ -65,14 +65,14 @@ tests:
path: metadata.name
value: prometheus-postgres-exporter-unittest
- equal:
path: spec.automountServiceAccountToken
path: automountServiceAccountToken
value: false
- equal:
path: spec.imagePullSecrets
path: imagePullSecrets
value:
- name: "my-pull-secret"
- equal:
path: spec.secrets
path: secrets
value:
- name: "my-secret"
namespace: "my-namespace"