= Endpoint-specific service for discoverable endpoints
When setting the `discoverable: true` attribute on a Devfile container component [endpoint](
https://devfile.io/docs/2.3.0/devfile-schema#components-container-endpoints-attributes), a dedicated service will be created and used for the endpoint. For all other endpoints that do not set the `discoverable: true` attribute, the common workspace service will be used.
The dedicated service created for the endpoint will have a static name, corresponding to the endpoint's name. For instance, a service named `http-python` will be generated in the example endpoint defined below:
```YAML
# Example endpoint with discoverable attribute
- exposure: public
targetPort: 8080
name: http-python
protocol: http
secure: true
attributes:
discoverable: true
```