Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5ed516a
shared/resources: Fix caching mechanism
stgraber Oct 9, 2025
2b25f5d
shared/validate: Add IsBase64
bensmrs Oct 3, 2025
ae9972e
incusd/instance/config: Add systemd.credential.* and systemd.credenti…
bensmrs Oct 3, 2025
a3753ba
incusd/instance/qemu: Add support for systemd credentials through SMB…
bensmrs Oct 5, 2025
64fef8e
incusd/instance/lxc: Add support for systemd credentials through CRED…
bensmrs Oct 6, 2025
ecdf48f
incusd/instance/lxc: Allow live-updating systemd credentials
bensmrs Oct 7, 2025
3158694
doc: Update configs
bensmrs Oct 7, 2025
a3f8d73
incus-agent: Pass more information to osUmount
bensmrs Oct 9, 2025
1b34201
api: instance_systemd_credentials
bensmrs Oct 7, 2025
df5e2ee
doc/wordlist: Update wordlist
bensmrs Oct 7, 2025
5c20d6c
test: Add tests for systemd keys
bensmrs Oct 9, 2025
bdf1484
Merge pull request #2545 from bensmrs/systemd-credentials
stgraber Oct 9, 2025
5768e8e
Merge pull request #2551 from stgraber/main
hallyn Oct 9, 2025
ccc4c4e
incusd/cluster: Disable proxy during cluster join
stgraber Oct 10, 2025
0a76807
Merge pull request #2552 from stgraber/cluster
stgraber Oct 10, 2025
f288371
gomod: Add gopsutil
bensmrs Oct 10, 2025
e27fae4
agent/darwin: Initial darwin agent implementation
bensmrs Oct 10, 2025
7d70e05
Merge pull request #2553 from bensmrs/macos-agent
stgraber Oct 10, 2025
6915a87
doc: Kubernetes and ClusterAPI integration
neoaggelos Oct 12, 2025
0691a2c
doc: Add API to wordlist
stgraber Oct 12, 2025
48987b0
Merge pull request #2556 from neoaggelos/doc/kubernetes
stgraber Oct 12, 2025
cfb5e93
github: Re-enable LINSTOR tests
bensmrs Oct 13, 2025
fac7063
Merge pull request #2558 from bensmrs/patch-2
stgraber Oct 14, 2025
d8f2758
internal/server/network: Update libovsdb import path
gibmat Oct 14, 2025
24c6775
Makefile: Update libovsdb command URL
gibmat Oct 14, 2025
a2925ab
go.mod: Update libovsdb import path
gibmat Oct 14, 2025
dd20d89
internal/server/network/ovn/schema: Update generated schema
gibmat Oct 14, 2025
f9d5bb5
Merge pull request #2561 from gibmat/update-ovn-lib-path
stgraber Oct 14, 2025
0b2de2e
github: Disable anything other than LINSTOR
bensmrs Oct 15, 2025
54d6f6d
test: Add sleep for LINSTOR
bensmrs Oct 17, 2025
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
382 changes: 3 additions & 379 deletions .github/workflows/tests.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ endif

.PHONY: update-ovsdb
update-ovsdb:
go install github.com/ovn-org/libovsdb/cmd/modelgen@main
go install github.com/ovn-kubernetes/libovsdb/cmd/modelgen@main

rm -Rf internal/server/network/ovs/schema
mkdir internal/server/network/ovs/schema
Expand Down
2 changes: 1 addition & 1 deletion cmd/incus-agent/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,6 @@ func eventsProcess(event api.Event) {
logger.Infof("Mounted hotplug %q (Type: %q) to %q", mntSource, "virtiofs", e.Config["path"])
} else if e.Action == "removed" {
// Attempt to unmount the disk.
_ = osUmount(mntSource)
_ = osUmount(mntSource, e.Config["path"], "virtiofs")
}
}
Loading