GO-2022-1181 : AAD Pod Identity obtaining token with backslash in github.com/Azure/aad-pod-identity
Discover Packages
github.com/Azure/aad-pod-identity
test
common
k8s
daemonset
package
Version:
v1.5.1
Opens a new window with list of versions in this module.
Published: Aug 9, 2019
License: MIT
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
WaitOnReady will block until the number of replicas of a daemonset is equal to the specified amount
type DaemonSet struct {
Metadata `json:"metadata"`
Status `json:"status"`
}
DaemonSet is used to parse data from 'kubectl get ds'
type List struct {
DaemonSets []DaemonSet `json:"items"`
}
List is a container that holds all daemonsets returned from 'kubectl get ds'
GetAllDaemonSets will return a list of daemonsets on a Kubernetes cluster
type Metadata struct {
Name string `json:"name"`
}
Metadata holds information about a daemonset
type Status struct {
DesiredNumberScheduled int `json:"desiredNumberScheduled"`
NumberAvailable int `json:"numberAvailable"`
NumberReady int `json:"numberReady"`
}
Status holds the status about a daemonset
Source Files
¶
Click to show internal directories.
Click to hide internal directories.