Automatically fill in `.Capabilities` in Helm Charts
See original GitHub issueThese are typically filled in on the server (e.g., whether the API server supports RBAC or not). Helm Charts tend to use these values for doing things like determining the apiVersion
to use for certain resources. If this is not filled in, it can fail in extremely confusing ways.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Chart Development Tips and Tricks - Helm
This guide covers some of the tips and tricks Helm chart developers have learned while building production-quality charts. Know Your Template Functions. Helm ......
Read more >Manage Auto-generated Secrets In Your Helm Charts - ITNEXT
This article will talk about the potential issues of some simple solutions and propose a more flexible solution based on Helm's lookup function....
Read more >13 Best Practices for using Helm - Coder Society
This article features 13 best practices for creating Helm charts to manage your applications running in Kubernetes.
Read more >Helm to configure and manage Kubernetes charts - IBM
Learn the basics of Helm, a package manager that creates repeatable builds ... Percent Complete: 5% ... Capabilities – Map of info about...
Read more >Build Kubernetes Operators from Helm Charts in 5 steps
Helm Charts are useful for addressing the complexities of ... your apps into your Kubernetes cluster and gain Day 2 operations capabilities.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’m running into an issue trying to enable a ServiceMonitor in the prometheus-cloudwatch-exporter chart.
Helm added a
--api-versions
flag tohelm template
that would allow me to enable it viahelm template
but I can’t with pulumi. https://github.com/helm/helm/pull/5392Would it make sense to be able to pass in arguments to that
--api-versions
flag via pulumi so we can fill in.Capabilities
?I finally did it a little bit differently than what I thought, but I think I came up with a satisfactory implementation.