feat(TALE-5): implement k8s integration

This commit is contained in:
Aarnav Tale 2024-07-08 13:23:18 -04:00
parent dc4d05a2d9
commit 6d411853d5
No known key found for this signature in database
4 changed files with 720 additions and 0 deletions

View file

@ -1,4 +1,5 @@
import docker from './docker'
import kubernetes from './kubernetes'
import proc from './proc'
export interface Integration {
@ -51,6 +52,10 @@ function getIntegration(name: string) {
case 'proc': {
return proc
}
case 'kubernetes':
case 'k8s': {
return kubernetes
}
default: {
throw new Error(`Unknown integration: ${name}`)
}