1 min read
If we want to share data between steps (on a Github action) it's just not enough to export a variable like this:
export VARIABLE_NAME
05/10/2021
Read more...1 min read
When you are handling helm chart dependencies using helm itself you might face the situation where you don't want to install a dependency based on some condition. Using the Chart.yaml file we can configure it to optionally load a dependency
04/10/2022
Read more...2 min read
We can define dependencies you our helm charts using the dependencies key on the Chart.yaml file:
(...)
dependencies:
- name: gatekeeper
version: "3.9.0"
repository: "https://open-policy-agent.github.io/gatekeeper/charts"
03/10/2022
Read more...