Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Latest commit

 

History

History
31 lines (17 loc) · 890 Bytes

README.md

File metadata and controls

31 lines (17 loc) · 890 Bytes

img

gluctl

The glue that helps maintain a Kubernetes Home Lab


Extending

Simply run npm install to install dependencies, then add new class and/or function files in lib and add an export entry in lib/index.js. This will eventually be more dynamic in near future. gluctl serves as the main entrypoint to everything. There it runs the commandRunner helper function which accepts a command and any number of args.

Exports format in index.js should follow this format to work:

export { SnakeCase as lowercase } from './ClassName.mjs'


js-standard-style