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

Remove short name for issuer #147

Merged
merged 1 commit into from
Oct 31, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ spec:
kind: Issuer
listKind: IssuerList
plural: issuers
shortNames:
- issuer
singular: issuer
scope: Namespaced
versions:
Expand Down
2 changes: 0 additions & 2 deletions pkg/apis/cert/crds/cert.gardener.cloud_issuers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ spec:
kind: Issuer
listKind: IssuerList
plural: issuers
shortNames:
- issuer
singular: issuer
scope: Namespaced
versions:
Expand Down
2 changes: 0 additions & 2 deletions pkg/apis/cert/crds/zz_generated_crds.go
Original file line number Diff line number Diff line change
Expand Up @@ -670,8 +670,6 @@ spec:
kind: Issuer
listKind: IssuerList
plural: issuers
shortNames:
- issuer
singular: issuer
scope: Namespaced
versions:
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/cert/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ type IssuerList struct {
// Issuer is the issuer CR.
// +kubebuilder:storageversion
// +kubebuilder:object:root=true
// +kubebuilder:resource:scope=Namespaced,path=issuers,shortName=issuer,singular=issuer
// +kubebuilder:resource:scope=Namespaced,path=issuers,singular=issuer
// +kubebuilder:subresource:status
// +kubebuilder:printcolumn:name=SERVER,description="ACME Server",JSONPath=".spec.acme.server",type=string
// +kubebuilder:printcolumn:name=EMAIL,description="ACME Registration email",JSONPath=".spec.acme.email",type=string
Expand Down