mirror of
https://github.com/rancher/k3k.git
synced 2026-03-04 18:54:14 +00:00
* Changing the cluster to be namespaced Changes the cluster type to be namespaced (and changes the various controllers to work with this new feature). Also adds crd generation and docs to the core cluster type. * CI fix
9 lines
317 B
Bash
Executable File
9 lines
317 B
Bash
Executable File
#! /bin/sh
|
|
|
|
cd $(dirname $0)/../
|
|
|
|
# This will return non-zero until all of our objects in ./pkg/apis can generate valid crds.
|
|
# allowDangerousTypes is needed for struct that use floats
|
|
controller-gen crd:generateEmbeddedObjectMeta=true,allowDangerousTypes=false paths=./pkg/apis/... output:crd:dir=./charts/k3k/crds
|
|
|