...

Source file src/edge-infra.dev/pkg/edge/info/constants.go

Documentation: edge-infra.dev/pkg/edge/info

     1  package info
     2  
     3  const (
     4  	//configmap data
     5  	ClusterEdgeID      = "cluster.edge.id"
     6  	StoreName          = "cluster.name"
     7  	ClusterType        = "cluster.type"
     8  	FleetType          = "cluster.fleet"
     9  	K8sClusterLocation = "cluster.location"
    10  	Banner             = "edge.banner"
    11  	TotpSecret         = "edge.token"
    12  	ProjectID          = "edge.project.id"
    13  	ForemanProjectID   = "foreman.project.id"
    14  	BannerID           = "banner.id"
    15  	EdgeAPIEndpoint    = "edge.api.endpoint"
    16  
    17  	//edge-info configmap name and ns
    18  	DefaultEdgeConfigMapNS = "kube-public"
    19  	EdgeConfigMapName      = "edge-info"
    20  	EdgeBootstrapping      = "edge-bootstrap"
    21  )
    22  
    23  var (
    24  	EdgeConfigMapNS = DefaultEdgeConfigMapNS
    25  )
    26  

View as plain text