Replies: 1 comment
-
The capability exists but with different levels of "easy." How can I deploy just infrastructure and no software? To deploy Infrastructure only set the parameter option called clusterSoftware enable flag to false which will prevent software from loading. If deployment via "Deploy to Azure" button doing this is easy. If using AZD it would require you to manually modify the parameter json file. There currently is no azd Environment feature flag yet to do this automatically. But it was anticipated to be added. "clusterSoftware": { How can I deploy middleware software but not the services? This is a little harder to do but can also be done fairly easy. Software is currently divided into components and applications. Components are the name used in this solution for middleware layers. ie: Istio, Elastic Certificate Management. Applications are currently a single item. All applications or none. The current design was to perhaps divide OSDU into pieces. OSDU-CORE: The base platform of osdu that is necessary for all parts of OSDU. (Partition, Legal, Storage, Indexer) This is the application that is currently underway. Then additional application layers can get added and allow an easy configuration of what application layers are desired to be brought online. To only install components the following bicep code would have to be commented out from the blade_service.bicep file (line 693-702) prior to running azd provision. applications: { |
Beta Was this translation helpful? Give feedback.
-
@danielscholl I see a couple of scenarios a developer might want to try out.
Do we provide an easy way to do this?
Beta Was this translation helpful? Give feedback.
All reactions