Documentation ¶
Overview ¶
Copyright 2023.
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
- func CleanSriovFilesFromHost(isOpenShift bool) error
- func ReadSriovSupportedNics() ([]string, error)
- func RemoveSriovResult() error
- func WriteConfFile(newState *sriovnetworkv1.SriovNetworkNodeState) (bool, error)
- func WriteSriovResult(result *SriovResult) error
- func WriteSriovSupportedNics() error
- type SriovConfig
- type SriovResult
Constants ¶
View Source
const ( SriovSystemdConfigPath = consts.SriovConfBasePath + "/sriov-interface-config.yaml" SriovSystemdResultPath = consts.SriovConfBasePath + "/sriov-interface-result.yaml" SriovServicePath = "/etc/systemd/system/sriov-config.service" SriovPostNetworkServicePath = "/etc/systemd/system/sriov-config-post-network.service" )
Variables ¶
This section is empty.
Functions ¶
func CleanSriovFilesFromHost ¶
func ReadSriovSupportedNics ¶
func RemoveSriovResult ¶
func RemoveSriovResult() error
func WriteConfFile ¶
func WriteConfFile(newState *sriovnetworkv1.SriovNetworkNodeState) (bool, error)
func WriteSriovResult ¶
func WriteSriovResult(result *SriovResult) error
func WriteSriovSupportedNics ¶
func WriteSriovSupportedNics() error
Types ¶
type SriovConfig ¶
type SriovConfig struct { Spec sriovnetworkv1.SriovNetworkNodeStateSpec `yaml:"spec"` UnsupportedNics bool `yaml:"unsupportedNics"` PlatformType consts.PlatformTypes `yaml:"platformType"` ManageSoftwareBridges bool `yaml:"manageSoftwareBridges"` OVSDBSocketPath string `yaml:"ovsdbSocketPath"` }
func ReadConfFile ¶
func ReadConfFile() (spec *SriovConfig, err error)
type SriovResult ¶
type SriovResult struct { SyncStatus string `yaml:"syncStatus"` LastSyncError string `yaml:"lastSyncError"` }
func ReadSriovResult ¶
func ReadSriovResult() (*SriovResult, error)
Click to show internal directories.
Click to hide internal directories.