github.com/elfadel/cilium@v1.6.12/pkg/option/daemon.go (about)

     1  // Copyright 2016-2018 Authors of Cilium
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package option
    16  
    17  var (
    18  	specPolicyTracing = Option{
    19  		Description: "Enable tracing when resolving policy (Debug)",
    20  	}
    21  
    22  	// DaemonOptionLibrary is the daemon's option library that should be
    23  	// used for read-only.
    24  	DaemonOptionLibrary = OptionLibrary{
    25  		PolicyTracing: &specPolicyTracing,
    26  	}
    27  
    28  	DaemonMutableOptionLibrary = OptionLibrary{
    29  		ConntrackAccounting: &specConntrackAccounting,
    30  		ConntrackLocal:      &specConntrackLocal,
    31  		Conntrack:           &specConntrack,
    32  		Debug:               &specDebug,
    33  		DebugLB:             &specDebugLB,
    34  		DropNotify:          &specDropNotify,
    35  		TraceNotify:         &specTraceNotify,
    36  		MonitorAggregation:  &specMonitorAggregation,
    37  		NAT46:               &specNAT46,
    38  	}
    39  )
    40  
    41  func init() {
    42  	for k, v := range DaemonMutableOptionLibrary {
    43  		DaemonOptionLibrary[k] = v
    44  	}
    45  }
    46  
    47  // ParseDaemonOption parses a string as daemon option
    48  func ParseDaemonOption(opt string) (string, OptionSetting, error) {
    49  	return ParseOption(opt, &DaemonOptionLibrary)
    50  }