You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the chart for srsran-project current configmap.yml assumes that cell_config.prach.ports is a scalar value:
{{- if .Values.config.cell_cfg.prach.ports }}
ports: {{ .Values.config.cell_cfg.prach.ports }}
{{- end }}
Following SRSRAN configuration reference cell_config.prach.ports is a list, therefore corresponding section in configmap.yml should be modified to accordingly:
{{- if .Values.config.cell_cfg.prach.ports }}
ports: [{{ join ", " .Values.config.cell_cfg.prach.ports }}]
{{- end }}
The text was updated successfully, but these errors were encountered:
In the chart for srsran-project current configmap.yml assumes that cell_config.prach.ports is a scalar value:
Following SRSRAN configuration reference cell_config.prach.ports is a list, therefore corresponding section in configmap.yml should be modified to accordingly:
The text was updated successfully, but these errors were encountered: