Skip to content

Commit

Permalink
Fix composite label name
Browse files Browse the repository at this point in the history
This prevented the pg backup listing from working properly.
  • Loading branch information
Kidswiss committed Jun 23, 2023
1 parent 29d3ad2 commit 00c7145
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/apiserver/vshn/postgres/vshnpostgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ package postgres

import (
"context"

vshnv1 "github.com/vshn/appcat/apis/vshn/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
)

var (
claimNamespaceLabel = "crossplane.io/claim-namespace"
claimNameLabel = "crossplane.io/claim"
claimNameLabel = "crossplane.io/claim-name"
)

// vshnPostgresqlProvider is an abstraction to interact with the K8s API
Expand Down

0 comments on commit 00c7145

Please sign in to comment.