@@ -894,11 +894,7 @@ spec:
894894 openLineage :
895895 description : |-
896896 Emit [OpenLineage](https://openlineage.io/) lineage events for the queries run on this
897- Trino cluster. The OpenLineage event listener runs on the coordinator only.
898- The backend connection is either inlined or references an `OpenLineageConnection` resource.
899- The shared `appName` field sets the OpenLineage job name format
900- (`openlineage-event-listener.job.name-format`); when unset Trino defaults to `$QUERY_ID`.
901- See the [OpenLineage usage guide](https://docs.stackable.tech/home/nightly/trino/usage-guide/openlineage).
897+ Trino cluster.
902898 nullable : true
903899 properties :
904900 appName :
@@ -4428,102 +4424,3 @@ spec:
44284424 served : true
44294425 storage : true
44304426 subresources : {}
4431- ---
4432- apiVersion : apiextensions.k8s.io/v1
4433- kind : CustomResourceDefinition
4434- metadata :
4435- name : openlineageconnections.openlineage.stackable.tech
4436- spec :
4437- group : openlineage.stackable.tech
4438- names :
4439- categories : []
4440- kind : OpenLineageConnection
4441- plural : openlineageconnections
4442- shortNames : []
4443- singular : openlineageconnection
4444- scope : Namespaced
4445- versions :
4446- - additionalPrinterColumns : []
4447- name : v1alpha1
4448- schema :
4449- openAPIV3Schema :
4450- description : A reusable definition of a connection to an OpenLineage backend.
4451- properties :
4452- spec :
4453- description : |-
4454- OpenLineage connection definition as a resource.
4455- Learn more about [OpenLineage](https://openlineage.io/).
4456- properties :
4457- credentialsSecretName :
4458- description : |-
4459- Name of a Secret containing the API key used to authenticate against the OpenLineage
4460- backend. The API key must be stored under the key `apiKey`. The Secret must be located in
4461- the same namespace as the workload using this connection. If not specified, no
4462- authentication is used.
4463- nullable : true
4464- type : string
4465- host :
4466- description : ' Host of the OpenLineage backend without any protocol or port. For example: `marquez`.'
4467- type : string
4468- port :
4469- description : ' Port the OpenLineage backend listens on. For example: `5000`.'
4470- format : uint16
4471- maximum : 65535.0
4472- minimum : 0.0
4473- type : integer
4474- tls :
4475- description : Use a TLS connection. If not specified no TLS will be used.
4476- nullable : true
4477- properties :
4478- verification :
4479- description : The verification method used to verify the certificates of the server and/or the client.
4480- oneOf :
4481- - required :
4482- - none
4483- - required :
4484- - server
4485- properties :
4486- none :
4487- description : Use TLS but don't verify certificates.
4488- type : object
4489- server :
4490- description : Use TLS and a CA certificate to verify the server.
4491- properties :
4492- caCert :
4493- description : CA cert to verify the server.
4494- oneOf :
4495- - required :
4496- - webPki
4497- - required :
4498- - secretClass
4499- properties :
4500- secretClass :
4501- description : |-
4502- Name of the [SecretClass](https://docs.stackable.tech/home/nightly/secret-operator/secretclass) which will provide the CA certificate.
4503- Note that a SecretClass does not need to have a key but can also work with just a CA certificate,
4504- so if you got provided with a CA cert but don't have access to the key you can still use this method.
4505- type : string
4506- webPki :
4507- description : |-
4508- Use TLS and the CA certificates trusted by the common web browsers to verify the server.
4509- This can be useful when you e.g. use public AWS S3 or other public available services.
4510- type : object
4511- type : object
4512- required :
4513- - caCert
4514- type : object
4515- type : object
4516- required :
4517- - verification
4518- type : object
4519- required :
4520- - host
4521- - port
4522- type : object
4523- required :
4524- - spec
4525- title : OpenLineageConnection
4526- type : object
4527- served : true
4528- storage : true
4529- subresources : {}
0 commit comments