Replies: 1 comment 1 reply
-
This check should be part of a normal |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With #4819 going in, odo will finally be able to provide the workflow we had long been discussing:
user 1) can add devfile.yaml with following information into their VCS (git):servicebindingbetween the component and a service)user 2) could clone this repository from the VSC and have the component, the service and link ready to use by simply doingodo create --devfile devfile.yaml && odo push.However, there's one caveat. If
user 2doesn't have the Operator(s) used to create the service(s) in devfile,odo pushwill fail. If odo could somehow telluser 2what it will require to preventodo pushfrom failing, it would help user set things up before doingodo push.odo push --dry-runwould check the cluster for the availability of CRs mentioned incomponents.kubernetes.inlinedand produce an output asking the user to install/setup a few things before doingodo push.--dry-runis just an example. We could call the flag something else.Beta Was this translation helpful? Give feedback.
All reactions