UNPKG
kubecfg
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.1
1.0.0
Helper tool to configure environment variables for Kubectl
github.com/jakkaj/kubecfg
jakkaj/kubecfg
kubecfg
/
src
/
run.ts
17 lines
(12 loc)
•
259 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env node
import
kubecfg
from
'./kubecfg'
;
class
test
{ public
async
run
(
){
var
a = process.
argv
;
console
.
log
(a);
var
k =
new
kubecfg
(a);
await
k.
Process
(); } }
var
t =
new
test
(); t.
run
();