Skip to content

Commit 8de36df

Browse files
committed
prepare merge into main
1 parent 968b60d commit 8de36df

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Taskfile.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ includes:
99
NESTED_MODULES: api
1010
API_DIRS: '{{.ROOT_DIR}}/api/...'
1111
MANIFEST_OUT: '{{.ROOT_DIR}}/api/crds/manifests'
12-
CODE_DIRS: '{{.ROOT_DIR}}/cmd/... {{.ROOT_DIR}}/internal/...'
13-
COMPONENTS: 'platform-service-dns'
12+
CODE_DIRS: '{{.ROOT_DIR}}/cmd/... {{.ROOT_DIR}}/internal/... {{.ROOT_DIR}}/api/...'
13+
COMPONENTS: platform-service-dns
1414
REPO_URL: 'https://github.com/openmcp-project/platform-service-dns'
1515
GENERATE_DOCS_INDEX: "false"
1616
CHART_COMPONENTS: "[]"
17+
CRDS_COMPONENTS: platform-service-dns
18+
CRDS_PATH: '{{.ROOT_DIR}}/api/crds/manifests'

api/dns/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/controllers/cluster/controller.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ func (r *ClusterReconciler) reconcile(ctx context.Context, req reconcile.Request
149149
if len(ControllerName+"--"+localName) > 63 {
150150
localName = ctrlutils.K8sNameUUIDUnsafe(c.Name)
151151
}
152-
access, ar, err := accessMgr.WaitForClusterAccess(ctx, localName, nil, &commonapi.ObjectReference{
152+
// TODO: use access
153+
_, ar, err := accessMgr.WaitForClusterAccess(ctx, localName, nil, &commonapi.ObjectReference{
153154
Name: c.Name,
154155
Namespace: c.Namespace,
155156
}, accesslib.ReferenceToCluster, []clustersv1alpha1.PermissionsRequest{

0 commit comments

Comments
 (0)