-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup orphaned func, new image-name calculation #1962
Merged
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
0807950
forced namespace change, deletes old func, kind works
gauron99 0f6c92f
new .deploy.image field
gauron99 e3fe80d
building
gauron99 3a6fdb3
building
gauron99 c87167e
add first iteration of complete functionality with f.Build.Image and …
gauron99 fdf34f9
base tests fixes for compile
gauron99 35d1916
fix base tests2 for now, integration test has a possible TODO
gauron99 2b1ba95
new generated schema
gauron99 318b376
fix some tests using .Image and create new test
gauron99 4f061ce
remove nested .func
gauron99 00cd46f
get rid of test
gauron99 2d3dfa3
remove my debug test
gauron99 c81a191
fix namespace change test
gauron99 6cacae4
fix pipeline run to use .Deploy.Image
gauron99 3e4a773
fix TestDeploy_ConfigApplied and change pipelines image being used
gauron99 ec6dd06
fix some tests
gauron99 29008ab
fix actions - return value, configApplied and registry on subsequent …
gauron99 809adf7
update empty image in tests issue
gauron99 a2abf0c
fix client.Apply tests with passing image value to .Deploy after push
gauron99 4b4305b
openshift override on namespace change forced, remove useless print
gauron99 37e810a
printing fixes, reviewdog, buildConfig return
gauron99 4e1f4f5
fix pipelines test by feeding image name to .Deploy, comments
gauron99 434cc0e
update more tests
gauron99 b7478b0
fix
gauron99 971e735
new test, comment
gauron99 070dcde
misspell
gauron99 b5a7bde
remove unnecessary comments
gauron99 2c48fee
fix from review
gauron99 2225fff
namespace updated with 2 fields; new error definitions; deploy functi…
gauron99 c18bc76
remove k8s service host var in test
gauron99 c809be5
error definition; fix client tests; cli delete fixup
gauron99 a1e193c
new schema
gauron99 75fbd28
namespace fixes; remover arguments fix
gauron99 5054422
delete_test cmd
gauron99 ce899c0
schema, new local remote flag instead of deploy
gauron99 3fe827a
fix test to have now required namespace
gauron99 8465c80
add namespace check, test action
gauron99 e5e5f2f
fix integration deploy test, comments
gauron99 6d9c667
fix wrongly removed namespace
gauron99 b19613b
small changes to remover and ns added to its tests
gauron99 4691a76
test moving logic to client
gauron99 5dc0ecc
fix deploy bug, remove verbose for better logs
gauron99 3f32aae
pipelines, clean remover
gauron99 76e606e
newline
gauron99 e3b8599
namespace required in remover, and fixed remote deployer - returns ns
gauron99 686fcee
fix integ test for pipelines.Run
gauron99 8a9de10
cleanup
gauron99 9d1d9f0
registry update change on deploy, some prints
gauron99 9b506cd
new deploy tests and mock update
gauron99 507fb0c
new tests, ns determination in mocks
gauron99 db2176f
deploy digested img doesnt populate build
gauron99 716401b
comments
gauron99 5cb7e1a
remove todo
gauron99 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 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 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 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 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 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.
Oops, something went wrong.
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.
Minor comment: usually in test files one uses a name like
TestNamespace
with an associated doc string, this helps 1) readers of the code immediately know it is a globally-scoped and test-specific variable, and 2) readers of the docs can see (without looking at the code) that the default namespace for this package isfunc
.