Compare commits

..

2 Commits

Author SHA1 Message Date
2b1e66b4d1 chore: Remove ./ from kustomization for consistency
All checks were successful
Build and deploy / build (push) Successful in 11m17s
2025-12-23 00:50:52 +01:00
766a487962 feat: Create namespace and set it explicitly
Some checks failed
Build and deploy / build (push) Has been cancelled
2025-12-23 00:48:44 +01:00
2 changed files with 1 additions and 17 deletions

View File

@@ -6,23 +6,9 @@ group "default" {
} }
target "docker-metadata-action" {} target "docker-metadata-action" {}
target "cache" {
cache-from = [
{
type = "gha",
}
]
cache-to = [
{
type = "gha",
mode = "max"
}
]
}
target "lldap-controller" { target "lldap-controller" {
inherits = ["docker-metadata-action", "cache"] inherits = ["docker-metadata-action"]
context = "./" context = "./"
dockerfile = "Dockerfile" dockerfile = "Dockerfile"
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"] tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
@@ -30,7 +16,6 @@ target "lldap-controller" {
} }
target "manifests" { target "manifests" {
inherits = ["cache"]
context = "./" context = "./"
dockerfile = "Dockerfile" dockerfile = "Dockerfile"
target = "manifests" target = "manifests"

View File

@@ -6,7 +6,6 @@ metadata:
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: lldap-controller name: lldap-controller
namespace: lldap
roleRef: roleRef:
kind: ClusterRole kind: ClusterRole
name: lldap-controller name: lldap-controller