-
Notifications
You must be signed in to change notification settings - Fork 13
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
Use common labels for the NATS manager resources #236
Conversation
@@ -226,8 +226,6 @@ func Test_Validate_CreateNATS(t *testing.T) { | |||
// object in the K8s cluster, then tries to modify it with givenUpdates, and test the error that was caused by this | |||
// update, against a wantErrMsg. | |||
func Test_Validate_UpdateNATS(t *testing.T) { | |||
t.Parallel() |
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 had to remove parallelism because it caused flakiness.
/hold |
/hold cancel |
commonLabels: | ||
app.kubernetes.io/component: nats-manager | ||
app.kubernetes.io/created-by: nats-manager | ||
app.kubernetes.io/managed-by: nats-manager | ||
app.kubernetes.io/part-of: nats-manager | ||
control-plane: nats-manager |
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 did not apply the following labels:
- app.kubernetes.io/instance: eventing
+ app.kubernetes.io/instance: nats-manager
- app.kubernetes.io/name: nats
+ app.kubernetes.io/name: nats-manager
because they will case the label selectors to change which we don't want for the time being.
Description
Use common labels for the NATS manager resources.
Related issue(s)