feat(TALE-5): implement k8s integration
This commit is contained in:
parent
dc4d05a2d9
commit
6d411853d5
4 changed files with 720 additions and 0 deletions
|
|
@ -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}`)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue