Documentation ¶
Overview ¶
This file is auto-generated by yamls2go.go
Index ¶
Constants ¶
View Source
const ( Deploy_crds_submariner_io_brokers_yaml = `` /* 2622-byte string literal not displayed */ Deploy_crds_submariner_io_submariners_yaml = `` /* 46354-byte string literal not displayed */ Deploy_crds_submariner_io_servicediscoveries_yaml = `` /* 6126-byte string literal not displayed */ Deploy_submariner_crds_submariner_io_clusters_yaml = `` /* 2060-byte string literal not displayed */ Deploy_submariner_crds_submariner_io_endpoints_yaml = `` /* 2331-byte string literal not displayed */ Deploy_submariner_crds_submariner_io_gateways_yaml = `` /* 5583-byte string literal not displayed */ Deploy_submariner_crds_submariner_io_clusterglobalegressips_yaml = `--- apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.12.1 name: clusterglobalegressips.submariner.io spec: group: submariner.io names: kind: ClusterGlobalEgressIP listKind: ClusterGlobalEgressIPList plural: clusterglobalegressips shortNames: - cgeip singular: clusterglobalegressip scope: Cluster versions: - name: v1 schema: openAPIV3Schema: description: ClusterGlobalEgressIP defines a policy for allocating GlobalIPs at the cluster level to be used when no GlobalEgressIP applies. properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object spec: description: Spec is the specification of desired behavior. properties: numGlobalIPs: description: The requested number of contiguous GlobalIPs to allocate from the Globalnet CIDR assigned to the cluster. If not specified, defaults to 1. maximum: 20 minimum: 0 type: integer type: object status: description: The most recently observed status. Read-only. properties: allocatedIPs: description: The list of allocated GlobalIPs. items: type: string type: array conditions: items: description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition ` + "``" + `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` + "``" + ` \n // other fields }" properties: lastTransitionTime: description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. format: date-time type: string message: description: message is a human readable message indicating details about the transition. This may be an empty string. maxLength: 32768 type: string observedGeneration: description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance. format: int64 minimum: 0 type: integer reason: description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty. maxLength: 1024 minLength: 1 pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ type: string status: description: status of the condition, one of True, False, Unknown. enum: - "True" - "False" - Unknown type: string type: description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) maxLength: 316 pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ type: string required: - lastTransitionTime - message - reason - status - type type: object type: array type: object required: - spec type: object served: true storage: true subresources: status: {} ` Deploy_submariner_crds_submariner_io_globalegressips_yaml = `--- apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.12.1 name: globalegressips.submariner.io spec: group: submariner.io names: kind: GlobalEgressIP listKind: GlobalEgressIPList plural: globalegressips shortNames: - geip singular: globalegressip scope: Namespaced versions: - name: v1 schema: openAPIV3Schema: description: GlobalEgressIP defines a policy for allocating GlobalIPs for selected pods in the namespace of the GlobalEgressIP object. properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object spec: description: Spec is the specification of the desired behavior. properties: numberOfIPs: description: The requested number of contiguous GlobalIPs to allocate from the Globalnet CIDR assigned to the cluster. If not specified, defaults to 1. maximum: 20 minimum: 0 type: integer podSelector: description: Selects specific pods in the namespace of this GlobalEgressIP to which this GlobalEgressIP applies. If not specified, all pods in the namespace are selected. If a pod matches multiple GlobalEgressIP objects, there is no guarantee from which GlobalEgressIP its GlobalIP will be assigned. properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. items: description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. properties: key: description: key is the label key that the selector applies to. type: string operator: description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. items: type: string type: array required: - key - operator type: object type: array matchLabels: additionalProperties: type: string description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. type: object type: object x-kubernetes-map-type: atomic type: object status: description: The most recently observed status. Read-only. properties: allocatedIPs: description: The list of allocated GlobalIPs. items: type: string type: array conditions: items: description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition ` + "``" + `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` + "``" + ` \n // other fields }" properties: lastTransitionTime: description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. format: date-time type: string message: description: message is a human readable message indicating details about the transition. This may be an empty string. maxLength: 32768 type: string observedGeneration: description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance. format: int64 minimum: 0 type: integer reason: description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty. maxLength: 1024 minLength: 1 pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ type: string status: description: status of the condition, one of True, False, Unknown. enum: - "True" - "False" - Unknown type: string type: description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) maxLength: 316 pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ type: string required: - lastTransitionTime - message - reason - status - type type: object type: array type: object required: - spec type: object served: true storage: true subresources: status: {} ` Deploy_submariner_crds_submariner_io_globalingressips_yaml = `--- apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.12.1 name: globalingressips.submariner.io spec: group: submariner.io names: kind: GlobalIngressIP listKind: GlobalIngressIPList plural: globalingressips shortNames: - giip singular: globalingressip scope: Namespaced versions: - additionalPrinterColumns: - description: Global IP Allocated jsonPath: .status.allocatedIP name: IP type: string name: v1 schema: openAPIV3Schema: properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object spec: description: Spec is the specification of desired behavior of GlobalIngressIP object. properties: podRef: description: The reference to a targeted Pod, if applicable. properties: name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' type: string type: object x-kubernetes-map-type: atomic serviceRef: description: The reference to a targeted Service, if applicable. properties: name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' type: string type: object x-kubernetes-map-type: atomic target: description: Specifies the type of the entity targeted by this object. type: string required: - target type: object status: description: Observed status of GlobalIngressIP. Its a read-only field. properties: allocatedIP: description: The GlobalIP allocated to this object. type: string conditions: items: description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition ` + "``" + `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` + "``" + ` \n // other fields }" properties: lastTransitionTime: description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. format: date-time type: string message: description: message is a human readable message indicating details about the transition. This may be an empty string. maxLength: 32768 type: string observedGeneration: description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance. format: int64 minimum: 0 type: integer reason: description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty. maxLength: 1024 minLength: 1 pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ type: string status: description: status of the condition, one of True, False, Unknown. enum: - "True" - "False" - Unknown type: string type: description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) maxLength: 316 pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ type: string required: - lastTransitionTime - message - reason - status - type type: object type: array type: object required: - spec type: object served: true storage: true subresources: status: {} ` Deploy_submariner_crds_submariner_io_gatewayroutes_yaml = `` /* 1881-byte string literal not displayed */ Deploy_submariner_crds_submariner_io_nongatewayroutes_yaml = `` /* 1897-byte string literal not displayed */ Deploy_mcsapi_crds_multicluster_x_k8s_io_serviceexports_yaml = `` /* 3436-byte string literal not displayed */ Deploy_mcsapi_crds_multicluster_x_k8s_io_serviceimports_yaml = `` /* 6787-byte string literal not displayed */ Config_broker_broker_admin_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-k8s-broker-admin ` Config_broker_broker_admin_role_yaml = `` /* 1157-byte string literal not displayed */ Config_broker_broker_admin_role_binding_yaml = `` /* 278-byte string literal not displayed */ Config_broker_broker_client_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-k8s-broker-client ` Config_broker_broker_client_role_yaml = `` /* 1021-byte string literal not displayed */ Config_broker_broker_client_role_binding_yaml = `` /* 282-byte string literal not displayed */ Config_rbac_submariner_operator_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-operator ` Config_rbac_submariner_operator_role_yaml = `` /* 1104-byte string literal not displayed */ Config_rbac_submariner_operator_role_binding_yaml = `` /* 254-byte string literal not displayed */ Config_rbac_submariner_operator_cluster_role_yaml = `` /* 1542-byte string literal not displayed */ Config_rbac_submariner_operator_cluster_role_binding_yaml = `` /* 268-byte string literal not displayed */ Config_rbac_submariner_operator_ocp_cluster_role_yaml = `` /* 373-byte string literal not displayed */ Config_rbac_submariner_operator_ocp_cluster_role_binding_yaml = `` /* 276-byte string literal not displayed */ Config_rbac_submariner_gateway_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-gateway ` Config_rbac_submariner_gateway_role_yaml = `` /* 1133-byte string literal not displayed */ Config_rbac_submariner_gateway_role_binding_yaml = `` /* 251-byte string literal not displayed */ Config_rbac_submariner_gateway_cluster_role_yaml = `` /* 1026-byte string literal not displayed */ Config_rbac_submariner_gateway_cluster_role_binding_yaml = `` /* 265-byte string literal not displayed */ Config_rbac_submariner_gateway_ocp_cluster_role_yaml = `` /* 267-byte string literal not displayed */ Config_rbac_submariner_gateway_ocp_cluster_role_binding_yaml = `` /* 273-byte string literal not displayed */ Config_rbac_submariner_route_agent_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-routeagent ` Config_rbac_submariner_route_agent_role_yaml = `` /* 955-byte string literal not displayed */ Config_rbac_submariner_route_agent_role_binding_yaml = `` /* 260-byte string literal not displayed */ Config_rbac_submariner_route_agent_cluster_role_yaml = `` /* 1218-byte string literal not displayed */ Config_rbac_submariner_route_agent_cluster_role_binding_yaml = `` /* 274-byte string literal not displayed */ Config_rbac_submariner_route_agent_ocp_cluster_role_yaml = `` /* 270-byte string literal not displayed */ Config_rbac_submariner_route_agent_ocp_cluster_role_binding_yaml = `` /* 282-byte string literal not displayed */ Config_rbac_submariner_globalnet_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-globalnet ` Config_rbac_submariner_globalnet_role_yaml = `` /* 1182-byte string literal not displayed */ Config_rbac_submariner_globalnet_role_binding_yaml = `` /* 257-byte string literal not displayed */ Config_rbac_submariner_globalnet_cluster_role_yaml = `` /* 1236-byte string literal not displayed */ Config_rbac_submariner_globalnet_cluster_role_binding_yaml = `` /* 271-byte string literal not displayed */ Config_rbac_submariner_globalnet_ocp_cluster_role_yaml = `` /* 269-byte string literal not displayed */ Config_rbac_submariner_globalnet_ocp_cluster_role_binding_yaml = `` /* 279-byte string literal not displayed */ Config_rbac_submariner_diagnose_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-diagnose ` Config_rbac_submariner_diagnose_role_yaml = `` /* 688-byte string literal not displayed */ Config_rbac_submariner_diagnose_role_binding_yaml = `` /* 254-byte string literal not displayed */ Config_rbac_submariner_diagnose_cluster_role_yaml = `` /* 804-byte string literal not displayed */ Config_rbac_submariner_diagnose_cluster_role_binding_yaml = `` /* 268-byte string literal not displayed */ Config_rbac_submariner_diagnose_ocp_cluster_role_yaml = `` /* 268-byte string literal not displayed */ Config_rbac_submariner_diagnose_ocp_cluster_role_binding_yaml = `` /* 276-byte string literal not displayed */ Config_rbac_lighthouse_agent_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-lighthouse-agent ` Config_rbac_lighthouse_agent_cluster_role_yaml = `` /* 849-byte string literal not displayed */ Config_rbac_lighthouse_agent_cluster_role_binding_yaml = `` /* 292-byte string literal not displayed */ Config_rbac_lighthouse_agent_ocp_cluster_role_yaml = `` /* 276-byte string literal not displayed */ Config_rbac_lighthouse_agent_ocp_cluster_role_binding_yaml = `` /* 300-byte string literal not displayed */ Config_rbac_lighthouse_coredns_service_account_yaml = `--- apiVersion: v1 kind: ServiceAccount metadata: name: submariner-lighthouse-coredns ` Config_rbac_lighthouse_coredns_cluster_role_yaml = `` /* 812-byte string literal not displayed */ Config_rbac_lighthouse_coredns_cluster_role_binding_yaml = `` /* 298-byte string literal not displayed */ Config_rbac_lighthouse_coredns_ocp_cluster_role_yaml = `` /* 278-byte string literal not displayed */ Config_rbac_lighthouse_coredns_ocp_cluster_role_binding_yaml = `` /* 306-byte string literal not displayed */ Config_openshift_rbac_submariner_metrics_reader_role_yaml = `` /* 245-byte string literal not displayed */ Config_openshift_rbac_submariner_metrics_reader_role_binding_yaml = `` /* 295-byte string literal not displayed */ )
Variables ¶
This section is empty.
Functions ¶
func GetObjectName ¶
Types ¶
type IObject ¶
type IObject struct {
metav1.ObjectMeta `json:"metadata,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.