blob: d7e4916f0cf436fd21ccc8494b85f8621ecf2c1e [file] [log] [blame]
Elia Battistonc8d0d462022-02-22 16:30:51 +01001/*
2* Copyright 2022-present Open Networking Foundation
3
4* Licensed under the Apache License, Version 2.0 (the "License");
5* you may not use this file except in compliance with the License.
6* You may obtain a copy of the License at
7
8* http://www.apache.org/licenses/LICENSE-2.0
9
10* Unless required by applicable law or agreed to in writing, software
11* distributed under the License is distributed on an "AS IS" BASIS,
12* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13* See the License for the specific language governing permissions and
14* limitations under the License.
15 */
16
17package config
18
19import (
20 "context"
21 "flag"
22)
23
24type BBFAdapterConfig struct {
25 PrintVersion bool
26 PrintBanner bool
27 LogLevel string
28 ProbeAddress string
29 TraceEnabled bool
30 TraceAgentAddress string
31 LogCorrelationEnabled bool
Elia Battistonbe9edc12022-03-09 11:35:58 +010032 VolthaNbiEndpoint string
33 TlsEnabled bool
34 TlsVerify bool
35 OnosRestEndpoint string
36 OnosUser string
37 OnosPassword string
Elia Battistonc8d0d462022-02-22 16:30:51 +010038}
39
40// LoadConfig loads the BBF adapter configuration through
41// default values and CLI arguments
42func LoadConfig(ctx context.Context) *BBFAdapterConfig {
43 conf := getDefaultConfig()
44
45 flag.StringVar(&conf.LogLevel, "log_level", conf.LogLevel, "Log level (DEBUG, INFO, WARN, ERROR)")
46 flag.BoolVar(&conf.PrintVersion, "version", conf.PrintVersion, "Print the version and exit")
47 flag.BoolVar(&conf.PrintBanner, "banner", conf.PrintBanner, "Print the banner at startup")
48 flag.StringVar(&conf.ProbeAddress, "probe_address", conf.ProbeAddress, "The address on which to listen to answer liveness and readiness probe queries over HTTP")
49 flag.BoolVar(&conf.TraceEnabled, "trace_enabled", conf.TraceEnabled, "Whether to send logs to tracing agent")
50 flag.StringVar(&conf.TraceAgentAddress, "trace_agent_address", conf.TraceAgentAddress, "The address of tracing agent to which span info should be sent")
51 flag.BoolVar(&conf.LogCorrelationEnabled, "log_correlation_enabled", conf.LogCorrelationEnabled, "Whether to enrich log statements with fields denoting operation being executed for achieving correlation")
Elia Battistonbe9edc12022-03-09 11:35:58 +010052 flag.StringVar(&conf.VolthaNbiEndpoint, "voltha_nbi_endpoint", conf.VolthaNbiEndpoint, "Endpoint of the VOLTHA northbound interface")
53 flag.BoolVar(&conf.TlsEnabled, "tls_enabled", conf.TlsEnabled, "Whether to use TLS when connecting to VOLTHA's northbound grpc server")
54 flag.BoolVar(&conf.TlsVerify, "tls_verify", conf.TlsVerify, "Whether to verify the server's certificate when connecting to VOLTHA's northbound grpc server. To be used with 'tls_enabled'.")
55 flag.StringVar(&conf.OnosRestEndpoint, "onos_rest_endpoint", conf.OnosRestEndpoint, "Endpoint of ONOS REST APIs")
56 flag.StringVar(&conf.OnosUser, "onos_user", conf.OnosUser, "Username for ONOS REST APIs")
57 flag.StringVar(&conf.OnosPassword, "onos_pass", conf.OnosPassword, "Password for ONOS REST APIs")
Elia Battistonc8d0d462022-02-22 16:30:51 +010058
59 flag.Parse()
60
61 return conf
62}
63
64// getDefaultConfig returns a BBF Adapter configuration with default values
65func getDefaultConfig() *BBFAdapterConfig {
66 return &BBFAdapterConfig{
67 LogLevel: "ERROR",
68 PrintVersion: false,
69 PrintBanner: false,
70 ProbeAddress: ":8080",
71 TraceEnabled: false,
72 TraceAgentAddress: "127.0.0.1:6831",
73 LogCorrelationEnabled: true,
Elia Battistonbe9edc12022-03-09 11:35:58 +010074 VolthaNbiEndpoint: "voltha-voltha-api.voltha.svc:55555",
75 TlsEnabled: false,
76 TlsVerify: false,
77 OnosRestEndpoint: "voltha-infra-onos-classic-hs.infra.svc:8181",
78 OnosUser: "onos",
79 OnosPassword: "rocks",
Elia Battistonc8d0d462022-02-22 16:30:51 +010080 }
81}