-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ReadOnly and UpdateAny flags to generic controller (#23)
This commit has the following changes: - restricts generic controller to update & delete attachments to the specific watch instance which created these attachments previously - allows update to an unrelated attachment if UpdateAny is set to true - stops create, update and delete of all attachments if ReadOnly is set to true Signed-off-by: AmitKumarDas <[email protected]>
- Loading branch information
Amit Kumar Das
authored
Oct 2, 2019
1 parent
b4e8a56
commit 4b8b0e7
Showing
11 changed files
with
599 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
Copyright 2019 The MayaData Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
// NameSelector is used to select resources based on | ||
// the names set here | ||
type NameSelector []string | ||
|
||
// Contains returns true if the provided search item | ||
// is present in the selector | ||
func (s NameSelector) Contains(search string) bool { | ||
for _, name := range s { | ||
if name == search { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
// ContainsOrTrue returns true if nameselector is empty or | ||
// search item is available in nameselector | ||
func (s NameSelector) ContainsOrTrue(search string) bool { | ||
if len(s) == 0 { | ||
return true | ||
} | ||
return s.Contains(search) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.