-
Notifications
You must be signed in to change notification settings - Fork 193
/
using-crds.js
40 lines (33 loc) · 1018 Bytes
/
using-crds.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
/* eslint no-console:0 */
//
// Use a Custom Resource Definition to extend the Kubernetes API and the client.
//
const Client = require('..').Client
const crd = require('./crontabs-crd.json')
async function main () {
try {
const client = new Client({ version: '1.13' })
//
// Create the CRD with the Kubernetes API
//
const create = await client.apis['apiextensions.k8s.io'].v1beta1.customresourcedefinitions.post({ body: crd })
console.log('Create: ', create)
//
// Add endpoints to our client
//
client.addCustomResourceDefinition(crd)
//
// List all the resources of the new type
//
const all = await client.apis['stable.example.com'].v1.namespaces('default').crontabs.get()
console.log('All: ', all)
//
// Get a specific resources.
//
const one = await client.apis['stable.example.com'].v1.namespaces('default').crontabs('foo').get()
console.log('One: ', one)
} catch (err) {
console.error('Error: ', err)
}
}
main()