Tomas Kral
Tomas Kral
Kedge should have a way how developers can define the relationship between their application and standard services like databases, caches, proxies, etc... Developers should have to write Kedge definition for...
We have different secrets, bot accounts, and accounts for different services We need a secure way to store secrets, so anyone who needs to use those can use it. I...
The file generated by `kedge init` is not friendly for new users :-( ``` ./kedge init -c DeploymentConfig -i tomaskral/nonroot-nginx -p 8080 --name demo ``` currently, it looks like this...
There is the [App Resource Grouping Proposal](https://docs.google.com/document/d/19t31XPqnWhjlrVim1Y9cAQzULArtCvQb8FqspHnnwHA/edit) That says that label `app.kubernetes.io/name` should be used to for all k8s objects (components) that make up an application. We should add this...
Currently, we have one label and one annotation that we add to each generated artifact. The way we do it is not nice. It is done separately for each object...
Why there are the same types defined again in init.go https://github.com/kedgeproject/kedge/blob/d6c365baeed607fb0767b4890b38fdde1304d90e/cmd/init.go#L38d/init.go#L41 ? It should reuse types from types.go. Otherwise, what is the point of using structs? The current duplication approach...
We should have three options how to do deploy or generate application: - Create just application resources - Create just environment resources (Resources specific for each environment - dev/test/prod..., could...
We have a lot of logic in `pkg/cmd` package that is not related to command line in any way. We should clean this up. We can create new `parser` package...
Deploy was implemented by calling external `kubectl` binary https://github.com/surajssd/kapp/pull/72 It will be bettter to use `client-go` to communicate with cluster. Once we start doing some more complicated operation it might...
We are starting to have some repeating questions about the project. Biggest question right now are about OpenCompose positioning : - OpenCompose vs Helm - OpenCompose vs Kompose - OpenCompose...