PHP Classes

File: docs/well-known-labels-and-annotations.md

Recommend this page to a friend!
  Classes of Angel Campos   Kubernetes Resource generator   docs/well-known-labels-and-annotations.md   Download  
File: docs/well-known-labels-and-annotations.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Kubernetes Resource generator
Generate a configuration for a Kubernetes resource
Author: By
Last change:
Date: 1 year ago
Size: 1,337 bytes
 

Contents

Class file image Download

Kubernetes Reference

Well known annotations and labels

classDiagram
    class AllObjectAnnotations
    <<abstract>> AllObjectAnnotations
    class PodAnnotations
    <<final>> PodAnnotations
    class ServiceAccountAnnotations
    <<final>> ServiceAccountAnnotations
    AllObjectAnnotations <|-- PodAnnotations
    AllObjectAnnotations <|-- ServiceAccountAnnotations
    AllObjectAnnotations : changeCause()
    AllObjectAnnotations : description()
    PodAnnotations : deletionCost()
    ServiceAccountAnnotations : enforceMountableSecrets()

Well known labels

classDiagram
    class AllObjectLabels
    <<abstract>> AllObjectLabels
    class NodeLabels
    <<final>> NodeLabels
    class PersistentVolumeLabels
    <<final>> PersistentVolumeLabels
    class PodLabels
    <<final>> PodLabels
    AllObjectLabels <|-- NodeLabels
    AllObjectLabels <|-- PersistentVolumeLabels
    AllObjectLabels <|-- PodLabels
    AllObjectLabels : component()
    AllObjectLabels : instance()
    AllObjectLabels : managedBy()
    AllObjectLabels : name()
    AllObjectLabels : partOf()
    AllObjectLabels : version()
    NodeLabels : region()
    NodeLabels : zone()
    PersistentVolumeLabels : region()
    PersistentVolumeLabels : zone()
    PodLabels : safeToEvict()
    PodLabels : unsafeToEvict()