G/co/crd/setup Jun 2026
# Example: ./g/co/crd/setup.sh kubectl apply -f ./crds/ kubectl wait --for=condition=established --timeout=60s crd/databasebackups.stable.example.com echo "CRD setup complete."
All sessions are encrypted. Using a strong PIN and Two-Factor Authentication (2FA) on your Google account is highly recommended. Common Use Cases g/co/crd/setup
apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: # The name must match the spec fields below, and be in the form: <plural>.<group> name: crontabs.stable.example.com spec: # Group name to use for REST API: /apis/<group>/<version> group: stable.example.com versions: - name: v1 served: true storage: true schema: openAPIV3Schema: type: object properties: spec: type: object properties: cronSpec: type: string image: type: string replicas: type: integer scope: Namespaced names: plural: crontabs singular: crontab kind: CronTab shortNames: - ct # Example: