Azure / service-fabric-mesh-preview

Service Fabric Mesh is the Service Fabric's serverless offering to enable developers to deploy containerized applications without managing infrastructure. Service Fabric Mesh , aka project “SeaBreeze” is currently available in private preview. This repository will be used for tracking bugs/feature requests as GitHub issues and for maintaining the latest documentation.
MIT License
82 stars 12 forks source link

deployment definition: more descriptive name instead of 'codePackages' #334

Open piizei opened 5 years ago

piizei commented 5 years ago

In the deployment file, there is element 'services' that contain list of services. Each service has currently something called 'code-packages' which is hard to relate to, as there is no code or packages in 'code-packages' :) I suppose this is leaked legacy from some service-fabric glossary? As the items are containers, the element should be named 'containers' or something else more descriptive.

SamirFarhat commented 5 years ago

+1

aloneguid commented 5 years ago

As long as I understand code packages are the actual containers. A service is similar to kubernetes pod in the way that it can run multiple containers on the same physical node i.e. sidecar pattern. There are no examples though showing how to utilise multiple code packages from a single service, and it's definitely not supported from VS Tooling.