Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
feat: update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
robodexo2000[bot] committed Jun 29, 2024
1 parent f8d7e96 commit f61ca37
Show file tree
Hide file tree
Showing 29 changed files with 12,153 additions and 6,948 deletions.
510 changes: 293 additions & 217 deletions acme.cert-manager.io/challenge_v1.json

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions acme.cert-manager.io/order_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"description": "Order is a type to represent an Order with an ACME server",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
Expand All @@ -15,29 +15,29 @@
"spec": {
"properties": {
"commonName": {
"description": "CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR.",
"description": "CommonName is the common name as specified on the DER encoded CSR.\nIf specified, this value must also be present in `dnsNames` or `ipAddresses`.\nThis field must match the corresponding field on the DER encoded CSR.",
"type": "string"
},
"dnsNames": {
"description": "DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.",
"description": "DNSNames is a list of DNS names that should be included as part of the Order\nvalidation process.\nThis field must match the corresponding field on the DER encoded CSR.",
"items": {
"type": "string"
},
"type": "array"
},
"duration": {
"description": "Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec.",
"description": "Duration is the duration for the not after date for the requested certificate.\nthis is set on order creation as pe the ACME spec.",
"type": "string"
},
"ipAddresses": {
"description": "IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.",
"description": "IPAddresses is a list of IP addresses that should be included as part of the Order\nvalidation process.\nThis field must match the corresponding field on the DER encoded CSR.",
"items": {
"type": "string"
},
"type": "array"
},
"issuerRef": {
"description": "IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed.",
"description": "IssuerRef references a properly configured ACME-type Issuer which should\nbe used to create this Order.\nIf the Issuer does not exist, processing will be retried.\nIf the Issuer is not an 'ACME' Issuer, an error will be returned and the\nOrder will be marked as failed.",
"properties": {
"group": {
"description": "Group of the resource being referred to.",
Expand All @@ -59,7 +59,7 @@
"additionalProperties": false
},
"request": {
"description": "Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order.",
"description": "Certificate signing request bytes in DER encoding.\nThis will be used when finalizing the order.\nThis field must be set on the order.",
"format": "byte",
"type": "string"
}
Expand All @@ -74,25 +74,25 @@
"status": {
"properties": {
"authorizations": {
"description": "Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order.",
"description": "Authorizations contains data returned from the ACME server on what\nauthorizations must be completed in order to validate the DNS names\nspecified on the Order.",
"items": {
"description": "ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource.",
"description": "ACMEAuthorization contains data returned from the ACME server on an\nauthorization that must be completed in order validate a DNS name on an ACME\nOrder resource.",
"properties": {
"challenges": {
"description": "Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process.",
"description": "Challenges specifies the challenge types offered by the ACME server.\nOne of these challenge types will be selected when validating the DNS\nname and an appropriate Challenge resource will be created to perform\nthe ACME challenge process.",
"items": {
"description": "Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process.",
"description": "Challenge specifies a challenge offered by the ACME server for an Order.\nAn appropriate Challenge resource can be created to perform the ACME\nchallenge process.",
"properties": {
"token": {
"description": "Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented.",
"description": "Token is the token that must be presented for this challenge.\nThis is used to compute the 'key' that must also be presented.",
"type": "string"
},
"type": {
"description": "Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored.",
"description": "Type is the type of challenge being offered, e.g. 'http-01', 'dns-01',\n'tls-sni-01', etc.\nThis is the raw value retrieved from the ACME server.\nOnly 'http-01' and 'dns-01' are supported by cert-manager, other values\nwill be ignored.",
"type": "string"
},
"url": {
"description": "URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server.",
"description": "URL is the URL of this challenge. It can be used to retrieve additional\nmetadata about the Challenge from the ACME server.",
"type": "string"
}
},
Expand All @@ -111,7 +111,7 @@
"type": "string"
},
"initialState": {
"description": "InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created.",
"description": "InitialState is the initial state of the ACME authorization when first\nfetched from the ACME server.\nIf an Authorization is already 'valid', the Order controller will not\ncreate a Challenge resource for the authorization. This will occur when\nworking with an ACME server that enables 'authz reuse' (such as Let's\nEncrypt's production endpoint).\nIf not set and 'identifier' is set, the state is assumed to be pending\nand a Challenge will be created.",
"enum": [
"valid",
"ready",
Expand All @@ -128,7 +128,7 @@
"type": "string"
},
"wildcard": {
"description": "Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'.",
"description": "Wildcard will be true if this authorization is for a wildcard DNS name.\nIf this is true, the identifier will be the *non-wildcard* version of\nthe DNS name.\nFor example, if '*.example.com' is the DNS name being validated, this\nfield will be 'true' and the 'identifier' field will be 'example.com'.",
"type": "boolean"
}
},
Expand All @@ -141,25 +141,25 @@
"type": "array"
},
"certificate": {
"description": "Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state.",
"description": "Certificate is a copy of the PEM encoded certificate for this Order.\nThis field will be populated after the order has been successfully\nfinalized with the ACME server, and the order has transitioned to the\n'valid' state.",
"format": "byte",
"type": "string"
},
"failureTime": {
"description": "FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off.",
"description": "FailureTime stores the time that this order failed.\nThis is used to influence garbage collection and back-off.",
"format": "date-time",
"type": "string"
},
"finalizeURL": {
"description": "FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed.",
"description": "FinalizeURL of the Order.\nThis is used to obtain certificates for this order once it has been completed.",
"type": "string"
},
"reason": {
"description": "Reason optionally provides more information about a why the order is in the current state.",
"description": "Reason optionally provides more information about a why the order is in\nthe current state.",
"type": "string"
},
"state": {
"description": "State contains the current state of this Order resource. States 'success' and 'expired' are 'final'",
"description": "State contains the current state of this Order resource.\nStates 'success' and 'expired' are 'final'",
"enum": [
"valid",
"ready",
Expand All @@ -172,7 +172,7 @@
"type": "string"
},
"url": {
"description": "URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set.",
"description": "URL of the Order.\nThis will initially be empty when the resource is first created.\nThe Order controller will populate this field when the Order is first processed.\nThis field will be immutable after it is initially set.",
"type": "string"
}
},
Expand Down
1 change: 0 additions & 1 deletion ceph.rook.io/cephcluster_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -3005,7 +3005,6 @@
},
"name": {
"description": "Name is a unique identifier for the set",
"maxLength": 40,
"type": "string"
},
"placement": {
Expand Down
Loading

0 comments on commit f61ca37

Please sign in to comment.