|
225 | 225 | "tenantID": { |
226 | 226 | "description": "Auth: Azure Service Principal:\nThe TenantID of the Azure Service Principal used to authenticate with Azure DNS.\nIf set, ClientID and ClientSecret must also be set.", |
227 | 227 | "type": "string" |
| 228 | + }, |
| 229 | + "zoneType": { |
| 230 | + "description": "ZoneType determines which type of Azure DNS zone to use.\n\nValid values are:\n - AzurePublicZone (default): Use a public Azure DNS zone.\n - AzurePrivateZone: Use an Azure Private DNS zone.\n\nIf not specified, AzurePublicZone is used.\n\nSupport for Azure Private DNS zones is currently\nexperimental and may change in future releases.", |
| 231 | + "enum": [ |
| 232 | + "AzurePublicZone", |
| 233 | + "AzurePrivateZone" |
| 234 | + ], |
| 235 | + "type": "string" |
228 | 236 | } |
229 | 237 | }, |
230 | 238 | "required": [ |
|
356 | 364 | "description": "Use RFC2136 (\"Dynamic Updates in the Domain Name System\") (https://datatracker.ietf.org/doc/rfc2136/)\nto manage DNS01 challenge records.", |
357 | 365 | "properties": { |
358 | 366 | "nameserver": { |
359 | | - "description": "The IP address or hostname of an authoritative DNS server supporting\nRFC2136 in the form host:port. If the host is an IPv6 address it must be\nenclosed in square brackets (e.g [2001:db8::1])\u00a0; port is optional.\nThis field is required.", |
| 367 | + "description": "The IP address or hostname of an authoritative DNS server supporting\nRFC2136 in the form host:port. If the host is an IPv6 address it must be\nenclosed in square brackets (e.g [2001:db8::1]); port is optional.\nThis field is required.", |
360 | 368 | "type": "string" |
361 | 369 | }, |
362 | 370 | "protocol": { |
|
404 | 412 | "description": "Use the AWS Route53 API to manage DNS01 challenge records.", |
405 | 413 | "properties": { |
406 | 414 | "accessKeyID": { |
407 | | - "description": "The AccessKeyID is used for authentication.\nCannot be set when SecretAccessKeyID is set.\nIf neither the Access Key nor Key ID are set, we fall-back to using env\nvars, shared credentials file or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
| 415 | + "description": "The AccessKeyID is used for authentication.\nCannot be set when SecretAccessKeyID is set.\nIf neither the Access Key nor Key ID are set, we fall back to using env\nvars, shared credentials file, or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
408 | 416 | "type": "string" |
409 | 417 | }, |
410 | 418 | "accessKeyIDSecretRef": { |
411 | | - "description": "The SecretAccessKey is used for authentication. If set, pull the AWS\naccess key ID from a key within a Kubernetes Secret.\nCannot be set when AccessKeyID is set.\nIf neither the Access Key nor Key ID are set, we fall-back to using env\nvars, shared credentials file or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
| 419 | + "description": "The SecretAccessKey is used for authentication. If set, pull the AWS\naccess key ID from a key within a Kubernetes Secret.\nCannot be set when AccessKeyID is set.\nIf neither the Access Key nor Key ID are set, we fall back to using env\nvars, shared credentials file, or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
412 | 420 | "properties": { |
413 | 421 | "key": { |
414 | 422 | "description": "The key of the entry in the Secret resource's `data` field to be used.\nSome instances of this field may be defaulted, in others it may be\nrequired.", |
|
480 | 488 | "type": "string" |
481 | 489 | }, |
482 | 490 | "secretAccessKeySecretRef": { |
483 | | - "description": "The SecretAccessKey is used for authentication.\nIf neither the Access Key nor Key ID are set, we fall-back to using env\nvars, shared credentials file or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
| 491 | + "description": "The SecretAccessKey is used for authentication.\nIf neither the Access Key nor Key ID are set, we fall back to using env\nvars, shared credentials file, or AWS Instance metadata,\nsee: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials", |
484 | 492 | "properties": { |
485 | 493 | "key": { |
486 | 494 | "description": "The key of the entry in the Secret resource's `data` field to be used.\nSome instances of this field may be defaulted, in others it may be\nrequired.", |
|
1607 | 1615 | "type": "string" |
1608 | 1616 | }, |
1609 | 1617 | "operator": { |
1610 | | - "description": "Operator represents a key's relationship to the value.\nValid operators are Exists and Equal. Defaults to Equal.\nExists is equivalent to wildcard for value, so that a pod can\ntolerate all taints of a particular category.", |
| 1618 | + "description": "Operator represents a key's relationship to the value.\nValid operators are Exists, Equal, Lt, and Gt. Defaults to Equal.\nExists is equivalent to wildcard for value, so that a pod can\ntolerate all taints of a particular category.\nLt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators).", |
1611 | 1619 | "type": "string" |
1612 | 1620 | }, |
1613 | 1621 | "tolerationSeconds": { |
|
2694 | 2702 | "type": "string" |
2695 | 2703 | }, |
2696 | 2704 | "operator": { |
2697 | | - "description": "Operator represents a key's relationship to the value.\nValid operators are Exists and Equal. Defaults to Equal.\nExists is equivalent to wildcard for value, so that a pod can\ntolerate all taints of a particular category.", |
| 2705 | + "description": "Operator represents a key's relationship to the value.\nValid operators are Exists, Equal, Lt, and Gt. Defaults to Equal.\nExists is equivalent to wildcard for value, so that a pod can\ntolerate all taints of a particular category.\nLt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators).", |
2698 | 2706 | "type": "string" |
2699 | 2707 | }, |
2700 | 2708 | "tolerationSeconds": { |
|
0 commit comments