Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cb99490
- Added MariaDB support for handling pod template personalization
MaxwellCaron Aug 22, 2025
420f748
add signoz + fix packages
Shadowclaw844 Aug 23, 2025
fd5dbbb
Revert "add signoz + fix packages"
Shadowclaw844 Aug 23, 2025
347dcf2
Pod template personalization
MaxwellCaron Aug 24, 2025
d8fe47b
fix packages and add signoz again
Shadowclaw844 Aug 25, 2025
c9d2190
better naming
Shadowclaw844 Aug 25, 2025
95d9d93
small update
MaxwellCaron Sep 4, 2025
0e5e6eb
Fixed build error
MaxwellCaron Sep 4, 2025
fb27f6d
Added debug logging for LDAP issues
MaxwellCaron Sep 4, 2025
cc5a811
Fixed bridge assignment for cloning and also cleaned up some proxmox/…
MaxwellCaron Sep 5, 2025
b636571
Moved realm to proxmox package and create SyncRealm function
MaxwellCaron Sep 5, 2025
ab2fe4e
Cleaned up handlers and cloning logging
MaxwellCaron Sep 6, 2025
2f141a1
Split AuthService to AuthService and LDAPService. Also renamed Proxmo…
MaxwellCaron Sep 6, 2025
6dd7d7e
Reimplemented retry logic and also fixed broken LDAP queries
MaxwellCaron Sep 7, 2025
15a79b9
Made QEMU agent calls use formdata instead of json. Also made routers…
MaxwellCaron Sep 7, 2025
b131d11
Reverted formdata change and fixed router file paths
MaxwellCaron Sep 7, 2025
319f953
Switched back to linked clones and improved logging for WaitForDisk
MaxwellCaron Sep 8, 2025
df8d5b7
Check pending changes before attempting to start cloned router
MaxwellCaron Sep 8, 2025
17ba9ea
Added realm sync requests where needed
MaxwellCaron Sep 8, 2025
91fb68d
Optimized cloning and improved middleware
MaxwellCaron Sep 9, 2025
2ea0893
Added ability to edit published template
MaxwellCaron Sep 9, 2025
f6323c8
Changed endpoint and check for WaitForDisk
MaxwellCaron Sep 9, 2025
c078f3a
Prepare for PR
MaxwellCaron Sep 9, 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
12 changes: 0 additions & 12 deletions .env

This file was deleted.

35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Code coverage profiles and other test artifacts
*.out
coverage.*
*.coverprofile
profile.cov

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work
go.work.sum

# env file
*.env

# Uploaded template images
uploads/

# Editor/IDE
# .idea/
# .vscode/
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.24 as builder
FROM golang:1.24 AS builder

WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o server .
RUN go build -o server ./cmd/api

FROM debian:bookworm-slim
WORKDIR /app
Expand Down
144 changes: 0 additions & 144 deletions auth/auth.go

This file was deleted.

185 changes: 0 additions & 185 deletions auth/ldap.go

This file was deleted.

Loading