@@ -54,7 +54,7 @@ type NginxIngressControllerSpec struct {
54
54
// +kubebuilder:validation:Optional
55
55
// +nullable
56
56
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
57
- HealthStatus * HealthStatus `json:"healthStatus, omitempty"`
57
+ HealthStatus * HealthStatus `json:"healthStatus,omitempty"`
58
58
// Enable debugging for NGINX. Uses the nginx-debug binary. Requires ‘error-log-level: debug’ in the ConfigMapData.
59
59
// +kubebuilder:validation:Optional
60
60
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
@@ -70,12 +70,12 @@ type NginxIngressControllerSpec struct {
70
70
// +kubebuilder:validation:Optional
71
71
// +nullable
72
72
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
73
- NginxStatus * NginxStatus `json:"nginxStatus, omitempty"`
73
+ NginxStatus * NginxStatus `json:"nginxStatus,omitempty"`
74
74
// Update the address field in the status of Ingresses resources.
75
75
// +kubebuilder:validation:Optional
76
76
// +nullable
77
77
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
78
- ReportIngressStatus * ReportIngressStatus `json:"reportIngressStatus, omitempty"`
78
+ ReportIngressStatus * ReportIngressStatus `json:"reportIngressStatus,omitempty"`
79
79
// Enables Leader election to avoid multiple replicas of the controller reporting the status of Ingress resources
80
80
// – only one replica will report status.
81
81
// +kubebuilder:validation:Optional
@@ -92,14 +92,14 @@ type NginxIngressControllerSpec struct {
92
92
// +kubebuilder:validation:Optional
93
93
// +nullable
94
94
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
95
- Prometheus * Prometheus `json:"prometheus, omitempty"`
95
+ Prometheus * Prometheus `json:"prometheus,omitempty"`
96
96
// Initial values of the Ingress Controller ConfigMap.
97
97
// Check https://docs.nginx.com/nginx-ingress-controller/configuration/global-configuration/configmap-resource/ for
98
98
// more information about possible values.
99
99
// +kubebuilder:validation:Optional
100
100
// +nullable
101
101
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
102
- ConfigMapData map [string ]string `json:"configMapData, omitempty"`
102
+ ConfigMapData map [string ]string `json:"configMapData,omitempty"`
103
103
// The GlobalConfiguration resource for global configuration of the Ingress Controller.
104
104
// Format is namespace/name.
105
105
// Requires enableCRDs set to true.
0 commit comments