반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Kubernetes 인증
- xdp
- MLflow
- Continuous Deployment
- Argo
- Kubeflow
- gitops
- opentelemetry
- kubernetes operator
- blue/green
- nginx ingress
- operator
- seldon core
- keda
- Model Serving
- Litmus
- mlops
- Kopf
- CANARY
- serving
- knative
- 카오스 엔지니어링
- CI/CD
- opensearch
- Pulumi
- tekton
- eBPF
- 오퍼레이터
- argocd
- Kubernetes
Archives
- Today
- Total
목록nodejs (1)
Kubernetes 이야기
Typescript client for kubernetes
TypeScript로 Kubernetes api 호출하는 방법을 알아보자. 먼저 npm init 로 프로젝트를 생성해 보자. # npm init 이제 TypeScript 와 필요한 client 를 설치해 보자. # npm install -g typescript Javascript용 Kubernetes client api를 설치하자. # npm install @kubernetes/client-node 설치되어 있는 Kubernetes default Namespace에 Pod List를 얻어오는 샘플을 만들어 보자. import k8s = require('@kubernetes/client-node'); const kc = new k8s.KubeConfig(); kc.loadFromDefault(); cons..
개발/typescript
2022. 3. 9. 19:55