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:100" 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:100" 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"` Released bool `gorm:"column:released" json:"released"` EditValue string `gorm:"column:edit_value; type:longtext" json:"editValue"` Description string `gorm:"column:description; size:500" json:"description"` }
type Release ¶
type Release struct { Model AppName string `gorm:"column:app_name; not null; unique_index:release_uindex; size:100" json:"appName"` ClusterName string `gorm:"column:cluster_name; not null; unique_index:release_uindex; size:100" json:"clusterName"` NamespaceName string `gorm:"column:namespace_name; not null; unique_index:release_uindex; size:100" json:"namespaceName"` Tag string `gorm:"column:tag; not null; unique_index:release_uindex; size:100" json:"tag"` Value string `gorm:"column:value; type:longtext" json:"value"` Comment string `gorm:"column:comment; size:500" json:"comment"` Type string `gorm:"column:type; size:50" json:"type"` }
type ReleaseMessage ¶
type ReleaseMessage 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"` Format string `gorm:"column:format; not null;" json:"format"` Value string `gorm:"column:value; type:longtext" json:"value"` }
Click to show internal directories.
Click to hide internal directories.