Show
= Support devfile endpoint annotations
With this release, you can provide link: https://devfile.io/docs/2.3.0/devfile-schema#components-container-endpoints-annotation [endpoint annotations] in the devfile. For example, the following devfile snippet will create an ingress or route with the annotation `foo: bar` on Cloud Development Environment (CDE) startup:
[source, yaml]
----
components:
- container:
endpoints:
- name: my-endpoint
annotation:
foo: bar
...
----