Quickstart ========== Already have an OpenShift cluster and an LLM endpoint? Three steps and you're running. No cluster yet? See :ref:`dont-have-a-cluster-yet-crc`. Install the operator ------------------------ **Operators → OperatorHub**, search **"OpenStack Lightspeed (Community)"**, click **Install**. Currently published for OpenShift 4.16 and 4.18 — on other versions, or if it's not showing up, see :doc:`install_guide` for the source-based alternative. Create the secret and CR ------------------------------ Save as ``secret.yaml``, with your own LLM API key: .. code-block:: yaml apiVersion: v1 kind: Secret type: Opaque metadata: name: openstack-lightspeed-apitoken namespace: openstack-lightspeed stringData: apitoken: Save as ``cr.yaml``, with your own endpoint, model, and provider type (see :ref:`supported-providers` for valid values): .. code-block:: yaml apiVersion: lightspeed.openstack.org/v1beta1 kind: OpenStackLightspeed metadata: name: openstack-lightspeed namespace: openstack-lightspeed spec: llmEndpoint: https://:/v1 llmEndpointType: llmCredentials: openstack-lightspeed-apitoken modelName: Then apply both: .. code-block:: bash oc apply -f secret.yaml oc apply -f cr.yaml Self-hosted endpoint with a self-signed certificate? See :doc:`install_guide` and :doc:`configuration` for the full field reference. Open the console --------------------- .. code-block:: bash oc whoami --show-console Open that URL and use the Lightspeed widget (lower-right corner).