Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

srsran-project configmap.yml: cell_config.prach.ports is a list #3

Open
hudouseko opened this issue Sep 11, 2024 · 1 comment
Open
Assignees

Comments

@hudouseko
Copy link

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 }}
@ninjab3s ninjab3s self-assigned this Sep 11, 2024
@ninjab3s
Copy link
Collaborator

Hi @hudouseko,
thanks for pointing that out. Ill have a look at it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants