mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-04-05 02:08:05 +00:00
27 lines
678 B
Go
27 lines
678 B
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package gateway
|
|
|
|
import (
|
|
"context"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
v1 "sigs.k8s.io/gateway-api/apis/v1"
|
|
|
|
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2"
|
|
)
|
|
|
|
func TenantFromGateway(ctx context.Context, c client.Client, gateway *v1.Gateway) (*capsulev1beta2.Tenant, error) {
|
|
tenantList := &capsulev1beta2.TenantList{}
|
|
if err := c.List(ctx, tenantList, client.MatchingFields{".status.namespaces": gateway.Namespace}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(tenantList.Items) == 0 {
|
|
return nil, nil //nolint:nilnil
|
|
}
|
|
|
|
return &tenantList.Items[0], nil
|
|
}
|