forked from godaddy/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubernetes-client-node.js
82 lines (69 loc) · 2.29 KB
/
kubernetes-client-node.js
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* eslint no-console:0 */
//
// Demonstrate how to use @kubernetes/client-node as a backend.
//
const k8s = require('@kubernetes/client-node')
const Client = require('..').Client
const ClientNodeBackend = require('../backends/kubernetes-client-node')
const deploymentManifest = require('./nginx-deployment.json')
async function main () {
try {
const kubeconfig = new k8s.KubeConfig()
kubeconfig.loadFromDefault()
const backend = new ClientNodeBackend({ client: k8s, kubeconfig })
const client = new Client({ backend, version: '1.10' })
//
// Get all the Namespaces.
//
const namespaces = (await client.api.v1.namespaces.get()).body.items.map(namespace => ({
name: namespace.metadata.name,
status: namespace.status
}))
console.log('Namespaces:', JSON.stringify(namespaces, null, 2))
//
// Create a new Deployment.
//
const create = await client.apis.apps.v1.namespaces('default').deployments.post({ body: deploymentManifest })
console.log('Create:', create.body)
//
// Fetch the Deployment we just created.
//
const deployment = await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).get()
console.log('Deployment: ', deployment.body)
//
// Change the Deployment Replica count to 10
//
const replica = {
spec: {
replicas: 10
}
}
const replicaModify = await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).patch({ body: replica })
console.log('Replica Modification: ', replicaModify)
//
// Modify the image tag
//
const newImage = {
spec: {
template: {
spec: {
containers: [{
name: 'nginx',
image: 'nginx:1.8.1'
}]
}
}
}
}
const imageSet = await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).patch({ body: newImage })
console.log('New Image: ', imageSet)
//
// Remove the Deployment we created.
//
const removed = await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).delete()
console.log('Removed: ', removed)
} catch (err) {
console.error('Error:', err.message)
}
}
main()