In [./templates/k8s-pipeline-rbac.yaml], the RoleBinding for the OpenMetadata server uses a hardcoded name:
line 114 — current
name: openmetadata-server-pipeline-manager
This should use the Helm fullname helper to follow the naming convention used throughout the chart:
proposed fix
name: {{ include "OpenMetadata.fullname" . }}-server-pipeline-manager
The same fix should be applied to the Role name on line 69. This ensures the resource names are unique per Helm release and consistent with the rest of the chart (see the first RoleBinding on line 51 which already uses serviceAccountName from values).
In [./templates/k8s-pipeline-rbac.yaml], the RoleBinding for the OpenMetadata server uses a hardcoded name:
line 114 — current
name: openmetadata-server-pipeline-manager
This should use the Helm fullname helper to follow the naming convention used throughout the chart:
proposed fix
name: {{ include "OpenMetadata.fullname" . }}-server-pipeline-manager
The same fix should be applied to the Role name on line 69. This ensures the resource names are unique per Helm release and consistent with the rest of the chart (see the first RoleBinding on line 51 which already uses serviceAccountName from values).