-
Notifications
You must be signed in to change notification settings - Fork 44
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
[TT-1806] add required chain.link labels to k8s soak test #944
Conversation
dd4587d
to
d73d36d
Compare
* Add required methods * Add GetBlocks * Add GetBlocks method
Quality Gate passedIssues Measures |
@@ -384,10 +384,24 @@ func BuildNodeContractPairID(node *client.ChainlinkClient, ocr2Addr string) (str | |||
} | |||
|
|||
func (c *Common) Default(t *testing.T, namespacePrefix string) (*Common, error) { | |||
productName := "data-feedsv2.0" |
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.
Is this the right product name?
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.
it's OCRv2 test => "data-feedsv2.0"
, it doesn't matter whether it's running on Solana or Ethereum or some other chain.
nsLabels, err := environment.GetRequiredChainLinkNamespaceLabels(productName, "soak") | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
workloadPodLabels, err := environment.GetRequiredChainLinkWorkloadAndPodLabels(productName, "soak") |
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.
do we need to differentiate between soak
vs smoke
?
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 think in this case these tests are always soak
, no?
Why?
To better track k8s expenses