You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package crd
|
|
|
|
|
|
|
|
import (
|
|
|
|
v1 "github.com/k3s-io/k3s/pkg/apis/k3s.cattle.io/v1"
|
|
|
|
"github.com/rancher/wrangler/v3/pkg/crd"
|
|
|
|
)
|
|
|
|
|
|
|
|
func List() []crd.CRD {
|
|
|
|
addon := v1.Addon{}
|
|
|
|
etcdSnapshotFile := v1.ETCDSnapshotFile{}
|
|
|
|
return []crd.CRD{
|
|
|
|
crd.NamespacedType("Addon.k3s.cattle.io/v1").
|
|
|
|
WithSchemaFromStruct(addon).
|
|
|
|
WithColumn("Source", ".spec.source").
|
|
|
|
WithColumn("Checksum", ".spec.checksum"),
|
|
|
|
crd.NonNamespacedType("ETCDSnapshotFile.k3s.cattle.io/v1").
|
|
|
|
WithSchemaFromStruct(etcdSnapshotFile).
|
|
|
|
WithColumn("SnapshotName", ".spec.snapshotName").
|
|
|
|
WithColumn("Node", ".spec.nodeName").
|
|
|
|
WithColumn("Location", ".spec.location").
|
|
|
|
WithColumn("Size", ".status.size").
|
|
|
|
WithColumn("CreationTime", ".status.creationTime"),
|
|
|
|
}
|
|
|
|
}
|