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):servicebinding
between 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 2
doesn't have the Operator(s) used to create the service(s) in devfile,odo push
will fail. If odo could somehow telluser 2
what it will require to preventodo push
from failing, it would help user set things up before doingodo push
.odo push --dry-run
would check the cluster for the availability of CRs mentioned incomponents.kubernetes.inlined
and produce an output asking the user to install/setup a few things before doingodo push
.--dry-run
is just an example. We could call the flag something else.Beta Was this translation helpful? Give feedback.
All reactions