Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
fac32b9
ci: Point integration tests to karpenter test framework repo and branch
vaishnavi-30-beep Jul 7, 2026
c581008
ci: Point test-artifacts workflow to karpenter test framework repo
vaishnavi-30-beep Jul 8, 2026
a286dd0
ci: Pass helm_chart_branch input through to test-artifacts workflow
vaishnavi-30-beep Jul 8, 2026
cc50dad
ci: Default helm chart branch to feature/karpenter-integration
vaishnavi-30-beep Jul 8, 2026
79d8e98
ci: Restore upstream helm chart logic, remove helm_chart_branch from …
vaishnavi-30-beep Jul 8, 2026
466bf7c
feat(containerinsights): Add karpenter metrics pipeline for config tr…
vaishnavi-30-beep Jul 31, 2026
07eaabb
feat(containerinsights): Add karpenter metrics pipeline for config tr…
vaishnavi-30-beep Jul 31, 2026
ecc5417
feat(containerinsights): Gate karpenter pipeline behind solutions.kar…
vaishnavi-30-beep Jul 31, 2026
4129d94
test(containerinsights): Add golden YAML test for karpenter pipeline
vaishnavi-30-beep Jul 31, 2026
2488198
Merge remote-tracking branch 'origin/main' into feature/karpenter-int…
vaishnavi-30-beep Jul 31, 2026
f9a3cc8
Merge remote-tracking branch 'origin/main' into feature/karpenter-int…
vaishnavi-30-beep Aug 4, 2026
77cab1a
feat(containerinsights): Add solutions.karpenter to schema.json
vaishnavi-30-beep Aug 4, 2026
2dbc366
feat(containerinsights): Add KEDA solution pipeline and fix Karpenter…
vaishnavi-30-beep Aug 4, 2026
37533ce
style: Add explicit solutions.enabled flag to golden test configs
vaishnavi-30-beep Aug 6, 2026
63a7261
Merge remote-tracking branch 'origin/main' into feature/karpenter-int…
vaishnavi-30-beep Aug 6, 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
31 changes: 31 additions & 0 deletions translator/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1882,6 +1882,37 @@
}
},
"additionalProperties": false
},
"solutions": {
"description": "Solution-specific pipeline toggles for container insights",
"type": "object",
"properties": {
"enabled": {
"description": "Global toggle for all solutions (default: true)",
"type": "boolean"
},
"karpenter": {
"type": "object",
"properties": {
"enabled": {
"description": "Whether to collect Karpenter metrics",
"type": "boolean"
}
},
"additionalProperties": false
},
"keda": {
"type": "object",
"properties": {
"enabled": {
"description": "Whether to collect KEDA metrics",
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"additionalProperties": false
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"agent": {
"region": "us-east-1"
},
"opentelemetry": {
"cluster_name": "TestCluster",
"collect": {
"container_insights": {
"collection_interval": 30,
"role": "cluster",
"solutions": {
"enabled": true,
"karpenter": {
"enabled": true
},
"keda": {
"enabled": false
}
}
}
}
}
}
Loading
Loading