mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-20 00:22:51 +08:00
735feeca90
- Mention the schema in the example CRD. - Update README and mention about feature gates. Kubernetes-commit: 74c9efa148ac6591a1dcf8f95c7fdac35aa603d0
21 lines
428 B
YAML
21 lines
428 B
YAML
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: foos.samplecontroller.k8s.io
|
|
spec:
|
|
group: samplecontroller.k8s.io
|
|
version: v1alpha1
|
|
names:
|
|
kind: Foo
|
|
plural: foos
|
|
scope: Namespaced
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
properties:
|
|
replicas:
|
|
type: integer
|
|
minimum: 1
|
|
maximum: 10
|