mirror of https://github.com/portainer/portainer
12 lines
297 B
Go
12 lines
297 B
Go
|
package kubernetes
|
||
|
|
||
|
type (
|
||
|
K8sApplication struct {
|
||
|
UID string `json:",omitempty"`
|
||
|
Name string `json:""`
|
||
|
Namespace string `json:",omitempty"`
|
||
|
Kind string `json:",omitempty"`
|
||
|
Labels map[string]string `json:",omitempty"`
|
||
|
}
|
||
|
)
|