-
Hello, I would like to deploy a helm chart with flux using attached helm repository and helm release custom resources. apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: cognigy
namespace: cognigy
spec:
type: oci
interval: 5m0s
url: oci://cognigy.azurecr.io/helm
secretRef:
name: xxx
---
apiVersion: helm.toolkit.fluxcd.io/v2beta2
kind: HelmRelease
metadata:
name: cognigy
namespace: cognigy
spec:
values:
...
chart:
spec:
chart: cognigy.ai
sourceRef:
kind: HelmRepository
name: cognigy
namespace: cognigy
version: "4.71.2"
interval: 5m0s
timeout: 15m0s
releaseName: cognigy.ai Once I deploy both helm release and helm repository crs, the flux helm controller is complaining that the helm chart must not contain said dot.
Is there a feature toggle or other workaround for the helm chart controller that allows me to deploy helm charts that don't follow the best practices regarding helm chart naming conventions? If you need any further information, please do not hesitate to contact me. Best regards Jens. [1] https://v2-14-0.helm.sh/docs/chart_best_practices/#:~:text=Dots%20should%20not%20be%20used,of%20the%20Helm%20Chart%20format. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I just found fluxcd/source-controller@84b30d1. |
Beta Was this translation helpful? Give feedback.
I just found fluxcd/source-controller@84b30d1.
That might fix the issue that I have.
I'm looking forward to the next source controller release :-)