Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): upgrade configuration #372

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/cdk8s-crd/imports/certmanagerio/CertificateSpec.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ type CertificateSpec struct {
SecretName *string `field:"required" json:"secretName" yaml:"secretName"`
// Defines extra output formats of the private key and signed certificate chain to be written to this Certificate's target Secret.
//
// This is an Alpha Feature and is only enabled with the
// `--feature-gates=AdditionalCertificateOutputFormats=true` option set on both
// This is a Beta Feature enabled by default. It can be disabled with the
// `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both
// the controller and webhook components.
AdditionalOutputFormats *[]*CertificateSpecAdditionalOutputFormats `field:"optional" json:"additionalOutputFormats" yaml:"additionalOutputFormats"`
// Requested common name X509 certificate subject attribute.
Expand Down
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions python/cdk8s-crd/imports/io/cert_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def __init__(

:param issuer_ref: Reference to the issuer responsible for issuing the certificate. If the issuer is namespace-scoped, it must be in the same namespace as the Certificate. If the issuer is cluster-scoped, it can be used from any namespace. The ``name`` field of the reference must always be specified.
:param secret_name: Name of the Secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer. The Secret resource lives in the same namespace as the Certificate resource.
:param additional_output_formats: Defines extra output formats of the private key and signed certificate chain to be written to this Certificate's target Secret. This is an Alpha Feature and is only enabled with the ``--feature-gates=AdditionalCertificateOutputFormats=true`` option set on both the controller and webhook components.
:param additional_output_formats: Defines extra output formats of the private key and signed certificate chain to be written to this Certificate's target Secret. This is a Beta Feature enabled by default. It can be disabled with the ``--feature-gates=AdditionalCertificateOutputFormats=false`` option set on both the controller and webhook components.
:param common_name: Requested common name X509 certificate subject attribute. More info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.6 NOTE: TLS clients will ignore this value when any subject alternative name is set (see https://tools.ietf.org/html/rfc6125#section-6.4.4). Should have a length of 64 characters or fewer to avoid generating invalid CSRs. Cannot be set if the ``literalSubject`` field is set.
:param dns_names: Requested DNS subject alternative names.
:param duration: Requested 'duration' (i.e. lifetime) of the Certificate. Note that the issuer may choose to ignore the requested duration, just like any other requested attribute. If unset, this defaults to 90 days. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration.
Expand Down Expand Up @@ -343,8 +343,8 @@ def additional_output_formats(
) -> typing.Optional[typing.List["CertificateSpecAdditionalOutputFormats"]]:
'''Defines extra output formats of the private key and signed certificate chain to be written to this Certificate's target Secret.

This is an Alpha Feature and is only enabled with the
``--feature-gates=AdditionalCertificateOutputFormats=true`` option set on both
This is a Beta Feature enabled by default. It can be disabled with the
``--feature-gates=AdditionalCertificateOutputFormats=false`` option set on both
the controller and webhook components.

:schema: CertificateSpec#additionalOutputFormats
Expand Down
4 changes: 2 additions & 2 deletions typescript/cdk8s-crd/imports/cert-manager.io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export interface CertificateSpec {
* to be written to this Certificate's target Secret.
*
*
* This is an Alpha Feature and is only enabled with the
* `--feature-gates=AdditionalCertificateOutputFormats=true` option set on both
* This is a Beta Feature enabled by default. It can be disabled with the
* `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both
* the controller and webhook components.
*
* @schema CertificateSpec#additionalOutputFormats
Expand Down
14 changes: 7 additions & 7 deletions yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading