mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-24 19:38:35 +08:00
【修改】k8s 配置
This commit is contained in:
17
apps/devops/services/k8s/dataselect/propertyname.go
Normal file
17
apps/devops/services/k8s/dataselect/propertyname.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package dataselect
|
||||
|
||||
// PropertyName is used to get the value of certain property of data cell.
|
||||
// For example if we want to get the namespace of certain Deployment we can use DeploymentCell.GetProperty(NamespaceProperty)
|
||||
type PropertyName string
|
||||
|
||||
// List of all property names supported by the UI.
|
||||
const (
|
||||
NameProperty = "name"
|
||||
CreationTimestampProperty = "creationTimestamp"
|
||||
NamespaceProperty = "namespace"
|
||||
StatusProperty = "status"
|
||||
TypeProperty = "type"
|
||||
FirstSeenProperty = "firstSeen"
|
||||
LastSeenProperty = "lastSeen"
|
||||
ReasonProperty = "reason"
|
||||
)
|
||||
Reference in New Issue
Block a user