This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
use architect-orb v0.8.8 #408
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
20efc19
save work
tfussell 03842a0
sort imports
tfussell 282a0fc
Merge branch 'master' into generate-crds
tfussell d61d01f
remove commented out gen.sh lines
tfussell 9874630
vet
tfussell 99ca148
remove controller-tools
tfussell 3c517cc
newline
tfussell a4830f3
add changelog
tfussell 2df279b
remove extraneous kubebuilder comments
tfussell ca2126f
use architect-orb v0.8.8
tfussell bb1d258
fix lint errors
tfussell 19e0aee
fix lint errors
tfussell 2dfec53
use patch for modifying generated file
tfussell 8818944
Merge branch 'master' into update-architect-orb
tfussell 9a4d539
add nolint comments
tfussell 82a5285
fmt
tfussell 8651cfd
ignore lines entirely
tfussell 208f872
fix patch
tfussell 22f78eb
update changelog
tfussell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 hidden or 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
This file contains hidden or 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,13 @@ | ||
| diff --git a/pkg/clientset/versioned/fake/register.go b/pkg/clientset/versioned/fake/register.go | ||
| index ddabbb93..02da0520 100644 | ||
| --- a/pkg/clientset/versioned/fake/register.go | ||
| +++ b/pkg/clientset/versioned/fake/register.go | ||
| @@ -36,7 +36,7 @@ import ( | ||
|
|
||
| var scheme = runtime.NewScheme() | ||
| var codecs = serializer.NewCodecFactory(scheme) | ||
| -var parameterCodec = runtime.NewParameterCodec(scheme) | ||
| +var parameterCodec = runtime.NewParameterCodec(scheme) // nolint | ||
| var localSchemeBuilder = runtime.SchemeBuilder{ | ||
| applicationv1alpha1.AddToScheme, | ||
| backupv1alpha1.AddToScheme, | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather replace that with
var parameterCodec = runtime.NewParameterCodec(scheme) // nolintjust in case.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.