Skip to content

Commit 15d64df

Browse files
authored
Fix transport server description (nginx#1446)
1 parent 975e0dd commit 15d64df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deployments/common/crds-v1beta1/k8s.nginx.org_transportservers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
spec:
99
additionalPrinterColumns:
1010
- JSONPath: .status.state
11-
description: Current state of the VirtualServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
11+
description: Current state of the TransportServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
1212
name: State
1313
type: string
1414
- JSONPath: .status.reason

deployments/common/crds/k8s.nginx.org_transportservers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
scope: Namespaced
1818
versions:
1919
- additionalPrinterColumns:
20-
- description: Current state of the VirtualServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
20+
- description: Current state of the TransportServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
2121
jsonPath: .status.state
2222
name: State
2323
type: string

deployments/helm-chart/crds/k8s.nginx.org_transportservers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
scope: Namespaced
1818
versions:
1919
- additionalPrinterColumns:
20-
- description: Current state of the VirtualServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
20+
- description: Current state of the TransportServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller.
2121
jsonPath: .status.state
2222
name: State
2323
type: string

pkg/apis/configuration/v1alpha1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ type GlobalConfigurationList struct {
5151
// +kubebuilder:validation:Optional
5252
// +kubebuilder:resource:shortName=ts
5353
// +kubebuilder:subresource:status
54-
// +kubebuilder:printcolumn:name="State",type=string,JSONPath=`.status.state`,description="Current state of the VirtualServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller."
54+
// +kubebuilder:printcolumn:name="State",type=string,JSONPath=`.status.state`,description="Current state of the TransportServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller."
5555
// +kubebuilder:printcolumn:name="Reason",type=string,JSONPath=`.status.reason`
5656
// +kubebuilder:printcolumn:name="Age",type=date,JSONPath=`.metadata.creationTimestamp`
5757

0 commit comments

Comments
 (0)