@@ -177,42 +177,42 @@ def main(branch: str = "main") -> int:
177177
178178 steps = [
179179 {
180- "step" : "[1/8 ]" ,
180+ "step" : "[1/7 ]" ,
181181 "description" : "Loading schemas" ,
182182 "command" : f"uv run infrahubctl schema load schemas --branch { branch } " ,
183183 "color" : "blue" ,
184184 "icon" : "📋" ,
185185 },
186186 {
187- "step" : "[2/8 ]" ,
187+ "step" : "[2/7 ]" ,
188188 "description" : "Loading menu definitions" ,
189189 "command" : f"uv run infrahubctl menu load menus/menu-full.yml --branch { branch } " ,
190190 "color" : "magenta" ,
191191 "icon" : "📑" ,
192192 },
193193 {
194- "step" : "[3/8 ]" ,
194+ "step" : "[3/7 ]" ,
195195 "description" : "Loading bootstrap data (locations, platforms, roles, etc.)" ,
196196 "command" : f"uv run infrahubctl object load objects/bootstrap/ --branch { branch } " ,
197197 "color" : "yellow" ,
198198 "icon" : "📦" ,
199199 },
200200 {
201- "step" : "[4/8 ]" ,
201+ "step" : "[4/7 ]" ,
202202 "description" : "Loading security data (zones, policies, rules)" ,
203203 "command" : f"uv run infrahubctl object load objects/security/ --branch { branch } " ,
204204 "color" : "green" ,
205205 "icon" : "🔒" ,
206206 },
207+ # {
208+ # "step": "[5/7]",
209+ # "description": "Populating security relationships",
210+ # "command": "uv run python scripts/populate_security_relationships.py",
211+ # "color": "cyan",
212+ # "icon": "🔗",
213+ # },
207214 {
208- "step" : "[5/8]" ,
209- "description" : "Populating security relationships" ,
210- "command" : "uv run python scripts/populate_security_relationships.py" ,
211- "color" : "cyan" ,
212- "icon" : "🔗" ,
213- },
214- {
215- "step" : "[6/8]" ,
215+ "step" : "[5/7]" ,
216216 "description" : "Creating user accounts and roles" ,
217217 "command" : "uv run python scripts/create_users_roles.py" ,
218218 "color" : "bright_blue" ,
@@ -238,7 +238,7 @@ def main(branch: str = "main") -> int:
238238
239239 # Add repository (may already exist)
240240 console .print (
241- "\n [bold bright_magenta on black][7/8 ][/bold bright_magenta on black] 📚 [bold white]Adding demo repository[/bold white]"
241+ "\n [bold bright_magenta on black][6/7 ][/bold bright_magenta on black] 📚 [bold white]Adding demo repository[/bold white]"
242242 )
243243 result = subprocess .run (
244244 "uv run infrahubctl repository add DEMO https://github.com/opsmill/infrahub-bundle-dc.git --ref main --read-only --ref main" ,
@@ -274,7 +274,7 @@ def main(branch: str = "main") -> int:
274274 console .print (Rule (style = "dim bright_yellow" ))
275275
276276 # Load event actions (optional - may fail if repository not fully synced)
277- console .print ("\n [bold bright_cyan on black][8/8 ][/bold bright_cyan on black] ⚡ [bold white]Loading event actions (optional)[/bold white]" )
277+ console .print ("\n [bold bright_cyan on black][7/7 ][/bold bright_cyan on black] ⚡ [bold white]Loading event actions (optional)[/bold white]" )
278278 events_loaded = run_command (
279279 f"uv run infrahubctl object load objects/events/ --branch { branch } " ,
280280 "Event actions loading" ,
0 commit comments