Created
March 23, 2022 03:49
-
-
Save kingdonb/f9753f79d291f71caff3164082523da2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
crd = KubeDSL.custom_resource_definition do | |
metadata do | |
# name must match the spec fields below, and be in the form: <plural>.<group> | |
name 'dailies.fluxwebstats.fluxcd.io' | |
end | |
spec do | |
# group name to use for REST API: /apis/<group>/<version> | |
group 'fluxwebstats.fluxcd.io' | |
# list of versions supported by this CustomResourceDefinition | |
version(:v1alpha1) do | |
name 'v1alpha1' | |
# Each version can be enabled/disabled by Served flag. | |
served 'true' | |
# One and only one version must be marked as the storage version. | |
storage true | |
schema do | |
open_apiv3_schema do | |
type 'object' | |
properties do | |
add :spec, '{"type": "object", | |
"properties": { | |
"cronSpec"}' | |
# properties do | |
# cronSpec do | |
# type 'string' | |
# end | |
# image do | |
# type 'string' | |
# end | |
# replicas do | |
# type 'integer' | |
# end | |
# end | |
# end | |
end | |
end | |
end | |
end | |
# either Namespaced or Cluster | |
scope 'Namespaced' | |
names do | |
# plural name to be used in the URL: /apis/<group>/<version>/<plural> | |
plural 'dailies' | |
# singular name to be used as an alias on the CLI and for display | |
singular 'daily' | |
# kind is normally the CamelCased singular type. Your resource manifests use this. | |
kind 'Daily' | |
# shortNames allow shorter string to match your resource on the CLI | |
short_names ['day'] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment