Support code or file upload in self-service action form
N
Nevo Hazan
Allow developers to upload or insert various configuration file types (e.g., .py, .conf, .txt) directly into the self service action form for "creating a microservice", for example. This feature should support a range of file formats beyond the current YAML, JSON, and Protobuf, and offer the option of markdown/free text input for added flexibility.
Here is an example of a microservice file structure:
Microservice/
│
│── MS-code/
│── values-files/
│ │ ├── production.yaml
| | ├── staging.yaml
│ │ └── testing.yaml
│ │
│ └── configmaps/
│ ├── prod
| | ├── settings.yaml
|. | ├── gunicorn.py
|. | └── nginx.conf
| ├── stage
| | ├── settings.yaml
|. | ├── gunicorn.py
|. | └── nginx.conf
│ └── test
| ├── settings.yaml
|. ├── gunicorn.py
|. └── nginx.conf
│
│
└── README.md