Documentation ¶
Overview ¶
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DiscoverDevices ¶ added in v0.6.0
Discover all the details of devices available on the local node
func GetAvailableDevices ¶ added in v0.6.0
func GetDeviceEmpty ¶ added in v0.8.0
check whether a device is completely empty
func VerifyNetworkInfo ¶ added in v0.3.0
func VerifyNetworkInfo(networkInfo NetworkInfo) error
Types ¶
type Context ¶
type Context struct { // Clientset is a connection to the core kubernetes API Clientset kubernetes.Interface // APIExtensionClientset is a connection to the API Extension kubernetes API APIExtensionClientset apiextensionsclient.Interface // RookClientset is a typed connection to the rook API RookClientset rookclient.Interface // The implementation of executing a console command Executor exec.Executor // The root configuration directory used by services ConfigDir string // A value indicating the desired logging/tracing level LogLevel capnslog.LogLevel // The full path to a config file that can be used to override generated settings ConfigFileOverride string // Information about the network for this machine and its cluster NetworkInfo NetworkInfo // The local devices detected on the node Devices []*sys.LocalDisk }
The context for loading or applying the configuration state of a service.
type NetworkInfo ¶ added in v0.3.0
type NetworkInfo struct { PublicAddr string ClusterAddr string PublicNetwork string // public network and subnet mask in CIDR notation ClusterNetwork string // cluster network and subnet mask in CIDR notation // deprecated ipv4 format address // TODO: remove these legacy fields in the future PublicAddrIPv4 string ClusterAddrIPv4 string }
func (NetworkInfo) Simplify ¶ added in v0.8.0
func (in NetworkInfo) Simplify() NetworkInfo
Simplify adapts deprecated fields TODO: remove this function in the future