summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/api/config/v1/types_ingress.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/openshift/api/config/v1/types_ingress.go')
-rw-r--r--vendor/github.com/openshift/api/config/v1/types_ingress.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/vendor/github.com/openshift/api/config/v1/types_ingress.go b/vendor/github.com/openshift/api/config/v1/types_ingress.go
new file mode 100644
index 000000000..484a1af0b
--- /dev/null
+++ b/vendor/github.com/openshift/api/config/v1/types_ingress.go
@@ -0,0 +1,42 @@
+package v1
+
+import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
+
+// +genclient
+// +genclient:nonNamespaced
+// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
+
+// Ingress holds cluster-wide information about Ingress. The canonical name is `cluster`
+// TODO this object is an example of a possible grouping and is subject to change or removal
+type Ingress struct {
+ metav1.TypeMeta `json:",inline"`
+ // Standard object's metadata.
+ metav1.ObjectMeta `json:"metadata,omitempty"`
+
+ // spec holds user settable values for configuration
+ // +kubebuilder:validation:Required
+ // +required
+ Spec IngressSpec `json:"spec"`
+ // status holds observed values from the cluster. They may not be overridden.
+ // +optional
+ Status IngressStatus `json:"status"`
+}
+
+type IngressSpec struct {
+ // domain is used to generate a default host name for a route when the
+ // route's host name is empty. The generated host name will follow this
+ // pattern: "<route-name>.<route-namespace>.<domain>".
+ Domain string `json:"domain"`
+}
+
+type IngressStatus struct {
+}
+
+// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
+
+type IngressList struct {
+ metav1.TypeMeta `json:",inline"`
+ // Standard object's metadata.
+ metav1.ListMeta `json:"metadata"`
+ Items []Ingress `json:"items"`
+}