mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
16 lines
345 B
Go
16 lines
345 B
Go
|
package crd
|
||
|
|
||
|
import (
|
||
|
v1 "github.com/k3s-io/k3s/pkg/apis/k3s.cattle.io/v1"
|
||
|
"github.com/rancher/wrangler/pkg/crd"
|
||
|
)
|
||
|
|
||
|
func List() []crd.CRD {
|
||
|
addon := crd.NamespacedType("Addon.k3s.cattle.io/v1").
|
||
|
WithSchemaFromStruct(v1.Addon{}).
|
||
|
WithColumn("Source", ".spec.source").
|
||
|
WithColumn("Checksum", ".spec.checksum")
|
||
|
|
||
|
return []crd.CRD{addon}
|
||
|
}
|