[VOL-2176] Moving BBSim to version 0.0.5 and adding support for noAuth and noDhcp params
Change-Id: Icc1dae730520c1d1d42cfa6c568b128197b21ab6
diff --git a/bbsim/Chart.yaml b/bbsim/Chart.yaml
index 17d6be9..3222922 100644
--- a/bbsim/Chart.yaml
+++ b/bbsim/Chart.yaml
@@ -16,5 +16,5 @@
description: Broadband Simulator
icon: https://guide.opencord.org/logos/cord.svg
-version: 3.0.1
-appVersion: 0.0.3
+version: 3.0.2
+appVersion: 0.0.5
diff --git a/bbsim/templates/deployment.yaml b/bbsim/templates/deployment.yaml
index 89c6118..206b557 100644
--- a/bbsim/templates/deployment.yaml
+++ b/bbsim/templates/deployment.yaml
@@ -49,6 +49,12 @@
"-nni", "{{ .Values.nni }}",
"-pon", "{{ .Values.pon }}",
"-onu", "{{ .Values.onu }}",
+ {{ if .Values.auth -}}
+ "-auth",
+ {{ end -}}
+ {{ if .Values.dhcp -}}
+ "-dhcp",
+ {{ end -}}
]
ports:
- name: "bbsim-olt-id-{{ .Values.olt_id }}"
diff --git a/bbsim/values.yaml b/bbsim/values.yaml
index 5c0161c..80b84c9 100644
--- a/bbsim/values.yaml
+++ b/bbsim/values.yaml
@@ -20,6 +20,8 @@
nni: 1
pon: 1
onu: 1
+auth: false
+dhcp: false
# TODO read this values in the config
olt_tcp_port: 50060
@@ -48,4 +50,4 @@
tolerations: []
-affinity: {}
\ No newline at end of file
+affinity: {}