G.crd/setup Upd ✧
Published: April 14, 2026 | Reading time: 4 minutes
- name: Deploy CRDs run: | g.crd/setup deploy \ --kubeconfig $ secrets.KUBECONFIG \ --dry-run=false \ --output summary g.crd/setup
apiVersion: g.crd/v1 kind: SetupConfig metadata: name: production-setup spec: crdRoot: ./crd validation: enabled: true schemaPath: ./schemas deployment: strategy: apply # Options: apply, create, server-side namespace: crd-system hooks: preInstall: ./scripts/pre-check.sh postInstall: ./scripts/notify.sh Once configured, you can leverage these essential commands: 1. Scaffold a New CRD Generate a boilerplate CRD with a typed specification: Published: April 14, 2026 | Reading time: 4
git clone https://github.com/g-crd/setup.git cd setup make build ./bin/setup version After installation, you must initialize the workspace. This creates the default directory structure and configuration file. Published: April 14