-
Notifications
You must be signed in to change notification settings - Fork 26
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
Upgrade operator-sdk to 1.38.0 #1040
Merged
+2,682
−2,211
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8d3abdd
draft
cchen-vertica d66b9f9
fix1
cchen-vertica 7445bc8
fix2
cchen-vertica cb5192d
fix3
cchen-vertica f22c54a
fix4
cchen-vertica 7af03ba
fix5
cchen-vertica e0e4315
added changie
cchen-vertica f8ac1de
fix6
cchen-vertica 40d0c0b
fixed olm deploy
cchen-vertica 9412cda
fixed olm env var issue
cchen-vertica 4676133
fixed multiple operator issue
cchen-vertica 8f40158
fixed tests with vlogger
cchen-vertica 1839fc4
fixed kustomize issue
cchen-vertica 85ee265
fixed the tests
cchen-vertica d831f4d
addressed the comments
cchen-vertica 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
fix3
commit cb5192d7159696e2c343736ea0f0839a0420d5e9
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -2,19 +2,19 @@ suite: Metrics configmap tests | |||||
templates: | ||||||
- verticadb-operator-manager-config-cm.yaml | ||||||
tests: | ||||||
- it: should not include proxy sidecar if expose is without auth | ||||||
- it: should not contain ip if expose is without auth | ||||||
set: | ||||||
prometheus: | ||||||
expose: EnableWithoutAuth | ||||||
asserts: | ||||||
- equal: | ||||||
path: data.METRICS_ADDR | ||||||
value: :8443 | ||||||
- it: should include proxy sidecar if expose is with auth | ||||||
- it: should cotain ip if expose is with auth | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
set: | ||||||
prometheus: | ||||||
expose: EnableWithAuthProxy | ||||||
asserts: | ||||||
- equal: | ||||||
path: data.METRICS_ADDR | ||||||
value: 127.0.0.1:8080 | ||||||
value: 127.0.0.1:8443 |
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
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.
Isn't it better to complain if
EnableWithTLS
but no secret is passed?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.
That is fine. Normally, the token is good enough to verify the user's identity. No need to use tls secret for "EnableWithTLS".