Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cluster ¶
type Cluster struct { Model AppName string `gorm:"column:app_name; not null; unique_index:cluster_uindex; size:500" json:"appName"` ClusterName string `gorm:"column:cluster_name; not null; unique_index:cluster_uindex; size:100" json:"clusterName"` Description string `gorm:"column:description; size:500" json:"description"` }
type Namespace ¶
type Namespace struct { Model AppName string `gorm:"column:app_name; not null; unique_index:namespace_uindex; size:500" json:"appName"` ClusterName string `gorm:"column:cluster_name; not null; unique_index:namespace_uindex; size:100" json:"clusterName"` NamespaceName string `gorm:"column:namespace_name; not null; unique_index:namespace_uindex; size:100" json:"namespaceName"` Format string `gorm:"column:format" json:"format"` Value string `gorm:"column:value; type:longtext" json:"value"` Description string `gorm:"column:description; size:500" json:"description"` }
type Release ¶
type Release struct { Model AppName string `gorm:"column:app_name; not null; size:500" json:"appName"` ClusterName string `gorm:"column:cluster_name; not null; size:100" json:"clusterName"` NamespaceName string `gorm:"column:namespace_name; not null; size:100" json:"namespaceName"` Value string `gorm:"column:value; type:longtext" json:"value"` Comment string `gorm:"column:comment; size:500" json:"comment"` }
Click to show internal directories.
Click to hide internal directories.