├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── src ├── action.ts ├── main.ts └── utils │ ├── constants.ts │ ├── do.ts │ └── kubectl.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: matootie -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/package.json -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { run } from "@app" 2 | 3 | run() 4 | -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/src/utils/do.ts -------------------------------------------------------------------------------- /src/utils/kubectl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/src/utils/kubectl.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matootie/dokube/HEAD/tsconfig.json --------------------------------------------------------------------------------