Documentation
¶
Overview ¶
Copyright 2014 The Kubernetes Authors.
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.
@CHANGELOG KubeEdge Authors: To manage node/pod status for edge deployment scenarios, we grab some functions from `kubelet/status/status_manager.go and do some modifications, they are 1. updatePodStatus 2. updateNodeStatus 3. normalizePodStatus 4. isPodNotRunning
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SortInitContainerStatuses ¶
func SortInitContainerStatuses(p *v1.Pod, statuses []v1.ContainerStatus)
SortInitContainerStatuses ensures that statuses are in the order that their init container appears in the pod spec
Types ¶
type DownstreamController ¶
type DownstreamController struct {
// contains filtered or unexported fields
}
DownstreamController watch kubernetes api server and send change to edge
func NewDownstreamController ¶
func NewDownstreamController() (*DownstreamController, error)
NewDownstreamController create a DownstreamController from config
func (*DownstreamController) Start ¶
func (dc *DownstreamController) Start() error
Start DownstreamController
func (*DownstreamController) Stop ¶
func (dc *DownstreamController) Stop() error
Stop DownstreamController
type SortedContainerStatuses ¶
type SortedContainerStatuses []v1.ContainerStatus
SortedContainerStatuses define A type to help sort container statuses based on container names.
func (SortedContainerStatuses) Len ¶
func (s SortedContainerStatuses) Len() int
func (SortedContainerStatuses) Less ¶
func (s SortedContainerStatuses) Less(i, j int) bool
func (SortedContainerStatuses) Swap ¶
func (s SortedContainerStatuses) Swap(i, j int)
type UpstreamController ¶
type UpstreamController struct {
// contains filtered or unexported fields
}
UpstreamController subscribe messages from edge and sync to k8s api server
func NewUpstreamController ¶
func NewUpstreamController() (*UpstreamController, error)
NewUpstreamController create UpstreamController from config
func (*UpstreamController) Start ¶
func (uc *UpstreamController) Start() error
Start UpstreamController
func (*UpstreamController) Stop ¶
func (uc *UpstreamController) Stop() error
Stop UpstreamController