blendle / kubecrt

Convert Helm charts to Kubernetes resources.
ISC License
115 stars 11 forks source link

allow list of naked charts #5

Closed JeanMertz closed 7 years ago

JeanMertz commented 7 years ago

Our current API looks like this:

apiVersion: v1
charts:
- blendle/web:
    repo: https://blendle-charts.storage.googleapis.com

If you simply want to compile a stable chart, without any custom configuration, you might end up with something like this:

apiVersion: v1
charts:
- stable/redis: {}
- stable/datadog: {}

Let's fix this, and also support a list of naked charts:

apiVersion: v1
charts:
- stable/redis
- stable/datadog
JeanMertz commented 7 years ago

I reconsidered this. I don't think having a zero-config chart will happen much, if at all, so I'm closing this for now. If it ever comes up in real use, we can reevaluate.