Skip to content
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
91c04d7
feat(cnpg): scrape prometheus endpoints for metrics
khatrivarun Feb 25, 2026
7a05055
feat(cnpg): updating network policy to allow prometheus scrapes
khatrivarun Feb 25, 2026
29e4867
feat(cnpg): updating network policy to allow prometheus scrapes from …
khatrivarun Feb 25, 2026
e62e8b6
feat(observability): add namespace and pod to the metrics
khatrivarun Feb 25, 2026
2141bd9
feat(observability): add namespace and pod to the metrics
khatrivarun Feb 25, 2026
545e569
feat(observability): deploy kube state metrics for more required metrics
khatrivarun Feb 25, 2026
d8bf324
feat(observability): deploy kube state metrics for more required metrics
khatrivarun Feb 25, 2026
fa809e7
feat(observability): respect previous labels when scraping
khatrivarun Feb 25, 2026
0311da6
feat(observability): scraping cAdvisor metrics too
khatrivarun Feb 26, 2026
d7521f6
feat(observability): scraping cAdvisor metrics too
khatrivarun Feb 26, 2026
1616358
feat(observability): deploy kube state metrics with resource limitations
khatrivarun Feb 26, 2026
86987f6
feat(observability): dashboard for postgresql database
khatrivarun Feb 26, 2026
b5f48db
feat(observability): dashboard for postgresql database
khatrivarun Feb 26, 2026
7b37aa2
feat(cnpg): variabalizing observability namespace
khatrivarun Feb 26, 2026
65b04f6
feat(ferretdb): variabalizing observability namespace
khatrivarun Feb 26, 2026
5b59927
feat(observability): variabalizing observability namespace
khatrivarun Feb 26, 2026
eda2f87
feat(ferretdb): variabalizing observability namespace
khatrivarun Feb 26, 2026
42964e2
fix(observability): psql dashboard fixes
khatrivarun Feb 26, 2026
bfdbcbd
docs(cnpg): README updated
khatrivarun Feb 26, 2026
0e51c7e
docs(ferretdb): README updated
khatrivarun Feb 26, 2026
42abcb5
docs(cnpg): README updated
khatrivarun Feb 26, 2026
1d30e57
Merge branch 'main' into task/90/cnpg-dashboards
khatrivarun Feb 26, 2026
d34c9d5
[INF] All modules switch to main branch
khatrivarun Feb 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module "cluster-issuer" {

# Complete Observability Stack Deployment
module "observability" {
source = "git::https://github.com/necro-cloud/modules//modules/observability?ref=task/90/cnpg-dashboards"
source = "git::https://github.com/necro-cloud/modules//modules/observability?ref=main"

// Certificates Details
cluster_issuer_name = module.cluster-issuer.cluster-issuer-name
Expand Down Expand Up @@ -60,7 +60,7 @@ module "garage" {

# Cloudnative PG Deployment for PostgreSQL Database Solution
module "cnpg" {
source = "git::https://github.com/necro-cloud/modules//modules/cnpg?ref=task/90/cnpg-dashboards"
source = "git::https://github.com/necro-cloud/modules//modules/cnpg?ref=main"

// Garage Cluster Details for configuration of PITR Backups
garage_certificate_authority = module.garage.garage_internal_certificate_secret
Expand Down Expand Up @@ -99,7 +99,7 @@ module "cnpg" {

# FerretDB Deployment for MongoDB Database Solution
module "ferretdb" {
source = "git::https://github.com/necro-cloud/modules//modules/ferretdb?ref=task/90/cnpg-dashboards"
source = "git::https://github.com/necro-cloud/modules//modules/ferretdb?ref=main"

// Garage Cluster Details for configuration of PITR Backups
garage_certificate_authority = module.garage.garage_internal_certificate_secret
Expand Down