The helm chart contains two directories, codemeter and codemeter-chart. The chart itself is named codemeter-chart but the chart is in codemeter.
Kustomize pulls using name: codemeter-chart and then looks for charts/codemeter-chart-1.2.1/codemeter-chart/Chart.yaml — but the chart extracted as codemeter/, hence the mismatch.
helm pull oci://registry-1.docker.io/wibusystems/codemeter-chart --version 1.2.1 --untar
tree .
.
├── codemeter
│ ├── Chart.yaml
│ ├── templates
│ │ ├── configmap-server-ini.yaml
│ │ ├── deployment.yaml
│ │ ├── _helpers.tpl
│ │ └── service.yaml
│ └── values.yaml
└── codemeter-chart
4 directories, 6 files
The helm chart contains two directories,
codemeterandcodemeter-chart. The chart itself is namedcodemeter-chartbut the chart is incodemeter.Kustomize pulls using name:
codemeter-chartand then looks forcharts/codemeter-chart-1.2.1/codemeter-chart/Chart.yaml— but the chart extracted ascodemeter/, hence the mismatch.