Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kubernetes Yaml Generator UI , yaml builder for kubernetes [closed]

Tags:

kubernetes

Is there any tool , online or self hosted , that takes all the values in UI as input and generate the full declarative yaml for the following kubernetes objects:

  • Deployment, with init containers and imagepullsecrets and other options
  • Service
  • ConfigMap
  • Secret
  • Daemonset
  • StatefulSet
  • Namespaces and quotas
  • RBAC resources

Edit:

I have been using kubectl create and kubectl run , but they dont spupport all the possible configuration options , and you still need to rememer all the options it supports , in UI one would be able to select from the give options for each resource.

like image 722
Ijaz Ahmad Avatar asked Oct 18 '18 10:10

Ijaz Ahmad


1 Answers

The closest is kubectl create .... and kubectl run ...... Run them with -o yaml --dry-run > output.yaml. This won't create the resource, but will write the resource description to output.yaml file.

like image 70
Praveen Sripati Avatar answered Sep 23 '22 10:09

Praveen Sripati