Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit 601ea55

Browse files
committed
WIP
1 parent 8c5f973 commit 601ea55

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/openshift-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nstallation in an Openshift cluster the OLM
1+
# Installation in an Openshift cluster the OLM
22

33
This installation method is the recommended way for Openshift users. **Note**: Openshift version must be 4.2 or higher.
44

pkg/apis/k8s/v1alpha1/nginxingresscontroller_types.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type NginxIngressControllerSpec struct {
5454
// +kubebuilder:validation:Optional
5555
// +nullable
5656
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
57-
HealthStatus *HealthStatus `json:"healthStatus, omitempty"`
57+
HealthStatus *HealthStatus `json:"healthStatus,omitempty"`
5858
// Enable debugging for NGINX. Uses the nginx-debug binary. Requires ‘error-log-level: debug’ in the ConfigMapData.
5959
// +kubebuilder:validation:Optional
6060
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
@@ -70,12 +70,12 @@ type NginxIngressControllerSpec struct {
7070
// +kubebuilder:validation:Optional
7171
// +nullable
7272
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
73-
NginxStatus *NginxStatus `json:"nginxStatus, omitempty"`
73+
NginxStatus *NginxStatus `json:"nginxStatus,omitempty"`
7474
// Update the address field in the status of Ingresses resources.
7575
// +kubebuilder:validation:Optional
7676
// +nullable
7777
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
78-
ReportIngressStatus *ReportIngressStatus `json:"reportIngressStatus, omitempty"`
78+
ReportIngressStatus *ReportIngressStatus `json:"reportIngressStatus,omitempty"`
7979
// Enables Leader election to avoid multiple replicas of the controller reporting the status of Ingress resources
8080
// – only one replica will report status.
8181
// +kubebuilder:validation:Optional
@@ -92,14 +92,14 @@ type NginxIngressControllerSpec struct {
9292
// +kubebuilder:validation:Optional
9393
// +nullable
9494
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
95-
Prometheus *Prometheus `json:"prometheus, omitempty"`
95+
Prometheus *Prometheus `json:"prometheus,omitempty"`
9696
// Initial values of the Ingress Controller ConfigMap.
9797
// Check https://docs.nginx.com/nginx-ingress-controller/configuration/global-configuration/configmap-resource/ for
9898
// more information about possible values.
9999
// +kubebuilder:validation:Optional
100100
// +nullable
101101
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
102-
ConfigMapData map[string]string `json:"configMapData, omitempty"`
102+
ConfigMapData map[string]string `json:"configMapData,omitempty"`
103103
// The GlobalConfiguration resource for global configuration of the Ingress Controller.
104104
// Format is namespace/name.
105105
// Requires enableCRDs set to true.

0 commit comments

Comments
 (0)