Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
c0de801
Pause, going to try to use the label selector again.
Feb 28, 2018
4060ca1
A working example using label selectors backing code for class.
Feb 28, 2018
3eac4e2
Working simple example of classes and plans filtering.
Feb 28, 2018
c1fd237
Cleaning up the types.
Feb 28, 2018
9dd7bc2
Add comments for current changes.
Feb 28, 2018
7ecd694
Adding feature flag for Catalog Restrictions.
Feb 28, 2018
72f7539
A better way to filter the broker response for while/blacklists.
Mar 5, 2018
8cb4639
Adding documentation for how to use the label selectors.
Mar 6, 2018
815dba4
Adding whitespace and reordering comments to avoid confusion and delays.
Mar 9, 2018
4bc662a
Changing to use list, adding tests for helper.
Mar 12, 2018
e6c99d8
Call the catalog restriction type ServiceCatalogRestrictions
Mar 14, 2018
bd96336
Call the catalog restriction type ClusterServiceCatalogRestrictions
Mar 14, 2018
25cf545
Document the consts for filter.
Mar 14, 2018
6cdeb3b
document comments are strict.
Mar 15, 2018
48f4444
No comma. I blame Doug.
Mar 15, 2018
84f52a9
Revert "Pass correct plan ID in deprovision request (for both deletin…
Mar 16, 2018
94c89b0
Merge remote-tracking branch 'upstream/master'
Mar 16, 2018
4b7bc89
Merge remote-tracking branch 'upstream/master'
Mar 23, 2018
2e08402
Merge with master.
Mar 23, 2018
f959fd2
Changing types to just be lists of strings. moving some conversion to…
Mar 23, 2018
1590bd8
Getting Can't handle <nil> from the fuzzer.
Mar 23, 2018
ad38b27
just use []string
Mar 26, 2018
ebff045
Merge with master.
Apr 2, 2018
2fe49b8
Fixing up feature gate.
Apr 2, 2018
5785b69
Make the flag generic in the unit test.
Apr 3, 2018
0ce636c
Fix ConvertToSelector comment.
Apr 3, 2018
f0a23ad
Moving convert functions out of conversion.go.
Apr 3, 2018
0eb1529
make it clear we will use for list/relist.
Apr 3, 2018
9dcfa79
Fix comment for NewPredicate
Apr 3, 2018
76b5450
Fix CatalogRestrictions comment.
Apr 3, 2018
9039cf0
fix openapi.
Apr 3, 2018
5de5989
fix ConvertCluster function comments
Apr 3, 2018
d33b2a0
Update comment in type.
Apr 4, 2018
4285b72
Remove the old test no longer needed.
Apr 4, 2018
7144232
move filter test code to the new file location.
Apr 4, 2018
b6507f8
Forgot the C header.
Apr 4, 2018
71a7d85
copy godoc for unversioned type.
Apr 4, 2018
d6f8448
Reword commend from feedback.
Apr 4, 2018
88022e6
Open api changed after generation. update.
Apr 4, 2018
114dcb1
upate comments.
Apr 4, 2018
1b105b4
adding integration test, super simple.
Apr 5, 2018
ce24688
Merge branch 'master' into whitelist_from_labels
n3wscott Apr 16, 2018
5e9e946
fmt'ed the features.
Apr 16, 2018
b7276aa
yolo, no flag.
Apr 16, 2018
60650e8
Rework integration test to not assume the flag.
Apr 16, 2018
e3aed41
Remove more cruft from the flag.
Apr 17, 2018
63f5691
Merge branch 'master' into whitelist_from_labels
Apr 19, 2018
14c39d1
godocs match 100% now.
Apr 19, 2018
6cbedc4
Generator generated.
Apr 20, 2018
0b99c5d
Merge remote-tracking branch 'upstream/master' into whitelist_from_la…
Apr 20, 2018
a75f8ee
ran deps ensure, got this
Apr 20, 2018
362278f
Merge with master.
Apr 20, 2018
dfdabaa
Revert sort of... back to k8s 1.10 gen.
Apr 20, 2018
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
Prev Previous commit
Next Next commit
No comma. I blame Doug.
  • Loading branch information
Scott Nichols committed Mar 15, 2018
commit 48f4444d46f04d64e38013869a120eef6d4e1f52
6 changes: 3 additions & 3 deletions pkg/filter/properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ type Properties labels.Labels
const (
// Name field.
Name = "name"
// SpecExternalName, the external name of the object.
// SpecExternalName is the external name of the object.
SpecExternalName = "spec.externalName"
// SpecExternalID, the external id of the object.
// SpecExternalID is the external id of the object.
SpecExternalID = "spec.externalID"
// SpecClusterServiceClassName, only used for plans, the parent service class name.
// SpecClusterServiceClassName is only used for plans, the parent service class name.
SpecClusterServiceClassName = "spec.clusterServiceClass.name"
)