2 min read
When using the Traefik ingress controller there are several ways of redirecting HTTP traffic to HTTPS, one of the ways is using IngressRoute (Traefik 2)
07/10/2022
Read more...3 min read
The best way of handling secrets is not having to: When we rely on Crossplane to create cloud resources (such as a RDS instance) we can configure it to create a secret with it's credentials so that we don't have define any secret beforehand
06/10/2022
Read more...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...