blob: ff7f36fae6bdb102cf87fac2d9ead0b0271e5407 [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 Battiston589addb2022-04-04 16:40:01 +020038 SchemaMountFilePath string
Elia Battiston4750d3c2022-07-14 13:24:56 +000039 KafkaClusterAddress string
Elia Battistonc8d0d462022-02-22 16:30:51 +010040}
41
42// LoadConfig loads the BBF adapter configuration through
43// default values and CLI arguments
44func LoadConfig(ctx context.Context) *BBFAdapterConfig {
45 conf := getDefaultConfig()
46
47 flag.StringVar(&conf.LogLevel, "log_level", conf.LogLevel, "Log level (DEBUG, INFO, WARN, ERROR)")
48 flag.BoolVar(&conf.PrintVersion, "version", conf.PrintVersion, "Print the version and exit")
49 flag.BoolVar(&conf.PrintBanner, "banner", conf.PrintBanner, "Print the banner at startup")
50 flag.StringVar(&conf.ProbeAddress, "probe_address", conf.ProbeAddress, "The address on which to listen to answer liveness and readiness probe queries over HTTP")
51 flag.BoolVar(&conf.TraceEnabled, "trace_enabled", conf.TraceEnabled, "Whether to send logs to tracing agent")
52 flag.StringVar(&conf.TraceAgentAddress, "trace_agent_address", conf.TraceAgentAddress, "The address of tracing agent to which span info should be sent")
53 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 +010054 flag.StringVar(&conf.VolthaNbiEndpoint, "voltha_nbi_endpoint", conf.VolthaNbiEndpoint, "Endpoint of the VOLTHA northbound interface")
55 flag.BoolVar(&conf.TlsEnabled, "tls_enabled", conf.TlsEnabled, "Whether to use TLS when connecting to VOLTHA's northbound grpc server")
56 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'.")
57 flag.StringVar(&conf.OnosRestEndpoint, "onos_rest_endpoint", conf.OnosRestEndpoint, "Endpoint of ONOS REST APIs")
58 flag.StringVar(&conf.OnosUser, "onos_user", conf.OnosUser, "Username for ONOS REST APIs")
59 flag.StringVar(&conf.OnosPassword, "onos_pass", conf.OnosPassword, "Password for ONOS REST APIs")
Elia Battiston589addb2022-04-04 16:40:01 +020060 flag.StringVar(&conf.SchemaMountFilePath, "schema_mount_path", conf.SchemaMountFilePath, "Path to the XML file that defines schema-mounts for libyang")
Elia Battiston4750d3c2022-07-14 13:24:56 +000061 flag.StringVar(&conf.KafkaClusterAddress, "kafka_cluster_address", conf.KafkaClusterAddress, "Kafka cluster messaging address")
Elia Battistonc8d0d462022-02-22 16:30:51 +010062
63 flag.Parse()
64
65 return conf
66}
67
68// getDefaultConfig returns a BBF Adapter configuration with default values
69func getDefaultConfig() *BBFAdapterConfig {
70 return &BBFAdapterConfig{
71 LogLevel: "ERROR",
72 PrintVersion: false,
73 PrintBanner: false,
74 ProbeAddress: ":8080",
75 TraceEnabled: false,
76 TraceAgentAddress: "127.0.0.1:6831",
77 LogCorrelationEnabled: true,
Elia Battistonbe9edc12022-03-09 11:35:58 +010078 VolthaNbiEndpoint: "voltha-voltha-api.voltha.svc:55555",
79 TlsEnabled: false,
80 TlsVerify: false,
81 OnosRestEndpoint: "voltha-infra-onos-classic-hs.infra.svc:8181",
82 OnosUser: "onos",
83 OnosPassword: "rocks",
Elia Battiston589addb2022-04-04 16:40:01 +020084 SchemaMountFilePath: "/schema-mount.xml",
Elia Battiston4750d3c2022-07-14 13:24:56 +000085 KafkaClusterAddress: "127.0.0.1:9092",
Elia Battistonc8d0d462022-02-22 16:30:51 +010086 }
87}