Skip to content

Commit 8891be7

Browse files
authored
chore: disable scrape configuration for prometheus (#78)
Signed-off-by: Nic <[email protected]>
1 parent 6c36c2c commit 8891be7

File tree

6 files changed

+28
-7
lines changed

6 files changed

+28
-7
lines changed

charts/api7/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: prometheus
33
repository: https://charts.bitnami.com/bitnami
4-
version: 0.1.4
4+
version: 0.5.1
55
- name: postgresql
66
repository: https://charts.bitnami.com/bitnami
77
version: 12.12.10
8-
digest: sha256:6d0fae161d3148048fda2051df32ae93caf03d6718885c555961f67915629a1d
9-
generated: "2023-12-20T14:13:44.208746+08:00"
8+
digest: sha256:d549be7a94677d1d3b70748b8ebb0f8fb2a529c57a5ac9cc8d07a08298f29be0
9+
generated: "2023-12-27T11:58:16.494435714+08:00"

charts/api7/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.0
18+
version: 0.4.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
@@ -26,7 +26,7 @@ appVersion: "3.0.0"
2626
dependencies:
2727
- name: prometheus
2828
condition: prometheus.builtin
29-
version: "0.1.4"
29+
version: "0.5.1"
3030
repository: "https://charts.bitnami.com/bitnami"
3131

3232
- name: postgresql

charts/api7/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# api7ee3
22

3-
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

@@ -9,7 +9,7 @@ A Helm chart for Kubernetes
99
| Repository | Name | Version |
1010
|------------|------|---------|
1111
| https://charts.bitnami.com/bitnami | postgresql | 12.12.10 |
12-
| https://charts.bitnami.com/bitnami | prometheus | 0.1.4 |
12+
| https://charts.bitnami.com/bitnami | prometheus | 0.5.1 |
1313

1414
## Values
1515

@@ -81,12 +81,19 @@ A Helm chart for Kubernetes
8181
| postgresql.builtin | bool | `true` | |
8282
| postgresql.host | string | `"api7ee3-postgresql"` | |
8383
| postgresql.port | int | `5432` | |
84+
| postgresql.primary.persistence.size | string | `"256Gi"` | |
85+
| postgresql.readReplicas.persistence.size | string | `"256Gi"` | |
8486
| prometheus.alertmanager.enabled | bool | `false` | |
8587
| prometheus.builtin | bool | `true` | |
88+
| prometheus.server.configuration | string | `""` | |
8689
| prometheus.server.enableAdminAPI | bool | `true` | |
8790
| prometheus.server.enableRemoteWriteReceiver | bool | `true` | |
91+
| prometheus.server.persistence.enabled | bool | `true` | |
92+
| prometheus.server.persistence.size | string | `"120Gi"` | |
93+
| prometheus.server.rbac.create | bool | `false` | |
8894
| prometheus.server.service.ports.http | int | `9090` | |
8995
| prometheus.server.service.type | string | `"ClusterIP"` | |
96+
| prometheus.server.serviceAccount.create | bool | `false` | |
9097
| resources | object | `{}` | |
9198
| securityContext | object | `{}` | |
9299
| serviceAccount.annotations | object | `{}` | |
-54.8 KB
Binary file not shown.
57 KB
Binary file not shown.

charts/api7/values.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,29 @@ prometheus:
8282
server:
8383
enableRemoteWriteReceiver: true
8484
enableAdminAPI: true
85+
serviceAccount:
86+
create: false
87+
rbac:
88+
create: false
89+
persistence:
90+
enabled: true
91+
size: 120Gi
8592
service:
8693
type: ClusterIP
8794
ports:
8895
http: 9090
96+
configuration: ""
8997

9098
postgresql:
9199
host: api7ee3-postgresql
92100
port: 5432
93101
builtin: true
102+
primary:
103+
persistence:
104+
size: 256Gi
105+
readReplicas:
106+
persistence:
107+
size: 256Gi
94108
auth:
95109
username: api7ee
96110
password: changeme

0 commit comments

Comments
 (0)