mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 00:29:26 +00:00
14 lines
238 B
Go
14 lines
238 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
k3scrd "github.com/k3s-io/k3s/pkg/crd"
|
|
_ "github.com/k3s-io/api/pkg/generated/controllers/k3s.cattle.io/v1"
|
|
"github.com/rancher/wrangler/v3/pkg/crd"
|
|
)
|
|
|
|
func main() {
|
|
crd.Print(os.Stdout, k3scrd.List())
|
|
}
|