Organize your asset repository
A consistent repository structure makes assets easier to find, simplifies CI/CD configuration, and reduces errors when onboarding new team members.
Understand the repository structure
Organize assets into bundles, which are logical groupings of related assets. Each bundle contains subfolders for the Itential Platform applications it uses.
Use shared/ for assets that multiple bundles depend on, such as notification workflows or common utilities.
The application subfolders correspond to Itential Platform applications:
studio/: Studio Projects (workflows, forms, transformations, JST templates)operations_manager/: Operations Manager automationsconfiguration_manager/: Golden configuration trees and compliance planslifecycle_manager/: Lifecycle Manager resource models
Choose an organization strategy
Organize by use case
Group assets by the business outcome or automation process they support. Use this approach when your team is organized around specific processes or end-to-end workflows.
Organize by vendor or technology
Group assets by the technology platforms or vendors they interact with. Use this approach when your team owns specific integrations, or when you work in a multi-vendor environment.
Follow repository best practices
- Start simple. Begin with a basic structure and add bundles as your use cases grow.
- Keep bundles focused. Each bundle should represent one logical grouping of related assets.
- Don’t organize by environment. The CI/CD pipeline handles environment targeting. Your repository layout should reflect what assets do, not where they run.
- Document your structure. Add a
README.mdat the root that explains your bundle strategy and any naming conventions your team follows. - Use a shared bundle. Create
shared/for reusable utilities referenced by multiple bundles.