Documentation ¶
Index ¶
- Constants
- func ComponentOverrideFromProvider(overrideName, provider string, providerList map[string]struct{}) v2alpha1.DatadogAgentComponentOverride
- func GetAgentNameWithProvider(overrideDSName, provider string) string
- func GetProviderLabelKeyValue(provider string) (string, string)
- func GetProviderListFromNodeList(nodeList []corev1.Node, logger logr.Logger) map[string]struct{}
- func ObjectFromKind(kind ObjectKind, platformInfo PlatformInfo) client.Object
- func ObjectListFromKind(kind ObjectKind, platformInfo PlatformInfo) client.ObjectList
- func UpdateFromObject(ctx context.Context, c client.Client, newObject client.Object, ...) error
- type ObjectKind
- type PlatformInfo
- func (platformInfo *PlatformInfo) CreatePDBObject() client.Object
- func (platformInfo *PlatformInfo) CreatePDBObjectList() client.ObjectList
- func (platformInfo *PlatformInfo) GetAgentResourcesKind(withCiliumResources bool) []ObjectKind
- func (platformInfo *PlatformInfo) GetApiVersions(name string) (preferred string, other string)
- func (platformInfo *PlatformInfo) IsResourceSupported(resource string) bool
- func (platformInfo *PlatformInfo) UseV1Beta1PDB() bool
Constants ¶
View Source
const ( // AppKubernetesNameLabelKey The name of the application AppKubernetesNameLabelKey = "app.kubernetes.io/name" // AppKubernetesInstanceLabelKey A unique name identifying the instance of an application AppKubernetesInstanceLabelKey = "app.kubernetes.io/instance" // AppKubernetesVersionLabelKey The current version of the application AppKubernetesVersionLabelKey = "app.kubernetes.io/version" // AppKubernetesComponentLabelKey The component within the architecture AppKubernetesComponentLabelKey = "app.kubernetes.io/component" // AppKubernetesPartOfLabelKey The name of a higher level application this one is part of AppKubernetesPartOfLabelKey = "app.kubernetes.io/part-of" // AppKubernetesManageByLabelKey The tool being used to manage the operation of an application AppKubernetesManageByLabelKey = "app.kubernetes.io/managed-by" )
View Source
const ( // ConfigMapKind ConfigMaps resource kind ConfigMapKind ObjectKind = "configmaps" // ClusterRolesKind ClusterRoles resource kind ClusterRolesKind = "clusterroles" // ClusterRoleBindingKind ClusterRoleBindings resource kind ClusterRoleBindingKind = "clusterrolebindings" // RolesKind Roles resource kind RolesKind = "roles" // RoleBindingKind RoleBinding resource kind RoleBindingKind = "rolebindings" // MutatingWebhookConfigurationsKind MutatingWebhookConfigurations resource kind MutatingWebhookConfigurationsKind = "mutatingwebhookconfigurations" // APIServiceKind APIService resource kind APIServiceKind = "apiservices" // SecretsKind Secrets resource kind SecretsKind = "secrets" // ServicesKind Services resource kind ServicesKind = "services" // ServiceAccountsKind ServiceAccounts resource kind ServiceAccountsKind = "serviceaccounts" // PodDisruptionBudgetsKind PodDisruptionBudgets resource kind PodDisruptionBudgetsKind = "poddisruptionbudgets" // NetworkPoliciesKind NetworkPolicies resource kind NetworkPoliciesKind = "networkpolicies" // PodSecurityPoliciesKind PodSecurityPolicies resource kind PodSecurityPoliciesKind = "podsecuritypolicies" // CiliumNetworkPoliciesKind CiliumNetworkPolicies resource kind CiliumNetworkPoliciesKind = "ciliumnetworkpolicies" // NodeKind Nodes resource kind NodeKind = "nodes" )
View Source
const ( // LegacyProvider Legacy Provider (empty name) LegacyProvider = "" // DefaultProvider Default provider name DefaultProvider = "default" // GKE provider types: https://cloud.google.com/kubernetes-engine/docs/concepts/node-images#available_node_images // GKECosType is the Container-Optimized OS node image offered by GKE GKECosType = "cos" // GKECloudProvider GKE CloudProvider name GKECloudProvider = "gke" // GKEProviderLabel is the GKE node label used to determine the node's provider GKEProviderLabel = "cloud.google.com/gke-os-distribution" )
Variables ¶
This section is empty.
Functions ¶
func ComponentOverrideFromProvider ¶ added in v1.4.0
func ComponentOverrideFromProvider(overrideName, provider string, providerList map[string]struct{}) v2alpha1.DatadogAgentComponentOverride
ComponentOverrideFromProvider generates a componentOverride with overrides for the DatadogAgent name, provider, and label
func GetAgentNameWithProvider ¶ added in v1.4.0
GetAgentNameWithProvider returns the agent name based on the ds name and provider
func GetProviderLabelKeyValue ¶ added in v1.4.0
GetProviderLabelKeyValue gets the corresponding cloud provider label key and value from a provider name
func GetProviderListFromNodeList ¶ added in v1.5.0
GetProviderListFromNodeList generates a list of providers given a list of nodes
func ObjectFromKind ¶ added in v1.0.0
func ObjectFromKind(kind ObjectKind, platformInfo PlatformInfo) client.Object
ObjectFromKind returns the corresponding object list from a kind
func ObjectListFromKind ¶ added in v1.0.0
func ObjectListFromKind(kind ObjectKind, platformInfo PlatformInfo) client.ObjectList
ObjectListFromKind returns the corresponding object list from a kind
Types ¶
type ObjectKind ¶ added in v1.0.0
type ObjectKind string
ObjectKind type for kubernetes resource kind.
type PlatformInfo ¶ added in v1.0.0
type PlatformInfo struct {
// contains filtered or unexported fields
}
func NewPlatformInfo ¶ added in v1.0.0
func NewPlatformInfo(versionInfo *version.Info, groups []*v1.APIGroup, resources []*v1.APIResourceList) PlatformInfo
func NewPlatformInfoFromVersionMaps ¶ added in v1.0.0
func NewPlatformInfoFromVersionMaps(versionInfo *version.Info, apiPreferredVersions, apiOtherVersions map[string]string) PlatformInfo
func (*PlatformInfo) CreatePDBObject ¶ added in v1.0.0
func (platformInfo *PlatformInfo) CreatePDBObject() client.Object
func (*PlatformInfo) CreatePDBObjectList ¶ added in v1.0.0
func (platformInfo *PlatformInfo) CreatePDBObjectList() client.ObjectList
func (*PlatformInfo) GetAgentResourcesKind ¶ added in v1.0.0
func (platformInfo *PlatformInfo) GetAgentResourcesKind(withCiliumResources bool) []ObjectKind
func (*PlatformInfo) GetApiVersions ¶ added in v1.0.0
func (platformInfo *PlatformInfo) GetApiVersions(name string) (preferred string, other string)
func (*PlatformInfo) IsResourceSupported ¶ added in v1.0.0
func (platformInfo *PlatformInfo) IsResourceSupported(resource string) bool
IsResourceSupported returns true if a Kubernetes resource is supported by the server
func (*PlatformInfo) UseV1Beta1PDB ¶ added in v1.0.0
func (platformInfo *PlatformInfo) UseV1Beta1PDB() bool
Source Files ¶
Click to show internal directories.
Click to hide internal directories.