Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
943c7d4
feat: switch to microshift
JanPokorny Feb 13, 2026
5ac1918
feat: ensure backwards compatibility
JanPokorny Feb 13, 2026
99e2452
refactor: merge drivers into single file
JanPokorny Feb 13, 2026
66126d2
refactor: make code concise
JanPokorny Feb 13, 2026
5e3394e
refactor: merge functions
JanPokorny Feb 13, 2026
d91ddc8
fix: k3s compatibility issue
JanPokorny Feb 16, 2026
fb5336e
refactor: simplify installation process
JanPokorny Feb 16, 2026
6831057
refactor: remove ufw
JanPokorny Feb 16, 2026
8ac6987
refactor: simplify installation steps
JanPokorny Feb 16, 2026
ccf1e79
refactor: simplify installation
JanPokorny Feb 16, 2026
ef2d229
refactor: simplify installation
JanPokorny Feb 16, 2026
4299321
fix: remove LVM
JanPokorny Feb 16, 2026
0ae2416
fix: remove cri-tools
JanPokorny Feb 16, 2026
4604fa3
fix: use skopeo+crictl instead of podman
JanPokorny Feb 16, 2026
04f163c
refactor: detect kubeconfig location centrally
JanPokorny Feb 16, 2026
e720596
refactor: startup script
JanPokorny Feb 16, 2026
f20076b
refactor: simplify installation
JanPokorny Feb 16, 2026
ffd20ab
fix: disable unneeded parts of microshift
JanPokorny Feb 16, 2026
5c19a62
refactor: simplify install script
JanPokorny Feb 16, 2026
32d0e10
fix: disable microshift storage driver
JanPokorny Feb 16, 2026
d07e891
feat: split installation steps
JanPokorny Feb 16, 2026
ad132f8
feat: simplify service forwarding
JanPokorny Feb 16, 2026
eff3e09
fix: use /etc/hosts on Windows for host.docker.internal
JanPokorny Feb 16, 2026
e974451
feat: install Helm manually
JanPokorny Feb 16, 2026
6786d81
fix: remove unneeded selinux deb
JanPokorny Feb 16, 2026
8814051
fix: remove unused olm deb
JanPokorny Feb 16, 2026
5bdfd0e
fix: wait for DNS
JanPokorny Feb 17, 2026
4f184ff
fix: wait with retries
JanPokorny Feb 17, 2026
bb24e7a
fix: VM status detection
JanPokorny Feb 17, 2026
0bccdcc
fix: properly port-forward services
JanPokorny Feb 17, 2026
d61f5c0
fix: pydantic status parsing
JanPokorny Feb 17, 2026
0374829
fix: DNS issues
JanPokorny Feb 17, 2026
10732a0
fix: redis issues
JanPokorny Feb 17, 2026
00dcf5c
fix: improve startup reliability
JanPokorny Feb 17, 2026
a9f3c2f
fix: improve telepresence compatibility
JanPokorny Feb 18, 2026
cf1ecdf
fix: canonify tags with @
JanPokorny Feb 18, 2026
807f95e
refactor: simplify setup
JanPokorny Feb 18, 2026
efce734
fix: WSL compatibility
JanPokorny Feb 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions apps/agentstack-cli/src/agentstack_cli/commands/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import hashlib
import json
import re
import sys
import typing
import uuid
from asyncio import CancelledError
Expand Down Expand Up @@ -131,20 +130,14 @@ async def client_side_build(
)
console.success(f"Successfully built agent: {tag}")
if import_image:
from agentstack_cli.commands.platform import get_driver
from agentstack_cli.commands.platform import ImageImportMode, import_cmd

if "agentstack-registry-svc.default" not in tag:
source_tag = tag
tag = re.sub("^[^/]*/", "agentstack-registry-svc.default:5001/", tag)
await run_command(["docker", "tag", source_tag, tag], "Tagging image")

driver = get_driver(vm_name=vm_name)

if (await driver.status()) != "running":
console.error("Agent Stack platform is not running.")
sys.exit(1)

await driver.import_image_to_internal_registry(tag)
await import_cmd(tag, vm_name, mode=ImageImportMode.registry)
console.success(
"Agent was imported to the agent stack internal registry.\n"
+ f"You can add it using [blue]agentstack add {tag}[/blue]"
Expand Down
895 changes: 895 additions & 0 deletions apps/agentstack-cli/src/agentstack_cli/commands/platform.py

Large diffs are not rendered by default.

196 changes: 0 additions & 196 deletions apps/agentstack-cli/src/agentstack_cli/commands/platform/__init__.py

This file was deleted.

Loading
Loading