-
-
Notifications
You must be signed in to change notification settings - Fork 2
chore: Listener class at webserver role level only #645
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
base: main
Are you sure you want to change the base?
Conversation
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.
There are a couple of .webservers.config.listenerClass references left, e.g. in doc examples.
The mount-dags-gitsync fail for me (metrics check does not work).
match role { | ||
AirflowRole::Webserver => Some(rolegroup.object_name()), | ||
AirflowRole::Webserver => Some(format!( | ||
"{cluster_name}-{role}", |
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.
This is somewhat used as well in execution_server_env_vars
. Can we make that a method?
@@ -14,13 +14,15 @@ | |||
) | |||
|
|||
parser = argparse.ArgumentParser(description="Health check script") | |||
parser.add_argument("--role-group", type=str, default="default", help="Role group to check") |
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.
Not used anymore?
@@ -916,7 +910,7 @@ fn build_server_rolegroup_statefulset( | |||
// A version value is required, and we do want to use the "recommended" format for the other desired labels | |||
"none", | |||
&rolegroup_ref.role, | |||
&rolegroup_ref.role_group, | |||
"none", |
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.
Maybe we actually want a method in op-rs without rolegroup, before we hardcode this in every operator?
Description
Please add a description here. This will become the commit message of the merge request later.
Definition of Done Checklist
Author
Reviewer
Acceptance
type/deprecation
label & add to the deprecation scheduletype/experimental
label & add to the experimental features tracker