-
Notifications
You must be signed in to change notification settings - Fork 410
[pick-changes] | Merge pull request #1970 from confluentinc/Java-21-A… #1997
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -18,7 +18,7 @@ | |||||||||
- kafka_connect | ||||||||||
- kafka_rest | ||||||||||
- ksql | ||||||||||
- control_center | ||||||||||
# - control_center | ||||||||||
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. If the 'control_center' inventory entry is intentionally disabled, please document the reasoning to help future maintainers understand the impact on the configuration.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||
|
||||||||||
# There are two schema_registry groups in the inventory file | ||||||||||
- name: Change schema_registry group name | ||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -149,12 +149,12 @@ | |||||||||||
loop: "{{groups['ksql']}}" | ||||||||||||
when: groups['ksql'] is defined | ||||||||||||
|
||||||||||||
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. Include an explanation for commenting out this certificate configuration task to confirm that the removal is intentional and to aid future maintenance.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||
- name: Write control_center hostnames for cert creation | ||||||||||||
lineinfile: | ||||||||||||
line: "control_center:{{item}}" | ||||||||||||
path: /var/ssl/private/generation/certificate-hosts | ||||||||||||
loop: "{{groups['control_center']}}" | ||||||||||||
when: groups['control_center'] is defined | ||||||||||||
# - name: Write control_center hostnames for cert creation | ||||||||||||
# lineinfile: | ||||||||||||
# line: "control_center:{{item}}" | ||||||||||||
# path: /var/ssl/private/generation/certificate-hosts | ||||||||||||
# loop: "{{groups['control_center']}}" | ||||||||||||
# when: groups['control_center'] is defined | ||||||||||||
|
||||||||||||
- name: Write ldap hostnames for cert creation | ||||||||||||
lineinfile: | ||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -149,21 +149,21 @@ platforms: | |||||||||||
privileged: true | ||||||||||||
networks: | ||||||||||||
- name: confluent | ||||||||||||
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. Add a comment detailing the reason for disabling the 'control-center1' platform configuration to assist future maintainers in understanding the change.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||
- name: control-center1 | ||||||||||||
hostname: control-center1.confluent | ||||||||||||
groups: | ||||||||||||
- control_center | ||||||||||||
- control_center_migration | ||||||||||||
image: redhat/ubi9-minimal | ||||||||||||
dockerfile: ../Dockerfile-rhel-java17.j2 | ||||||||||||
command: "" | ||||||||||||
volumes: | ||||||||||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro | ||||||||||||
privileged: true | ||||||||||||
published_ports: | ||||||||||||
- "9021:9021" | ||||||||||||
networks: | ||||||||||||
- name: confluent | ||||||||||||
# - name: control-center1 | ||||||||||||
# hostname: control-center1.confluent | ||||||||||||
# groups: | ||||||||||||
# - control_center | ||||||||||||
# - control_center_migration | ||||||||||||
# image: redhat/ubi9-minimal | ||||||||||||
# dockerfile: ../Dockerfile-rhel-java17.j2 | ||||||||||||
# command: "" | ||||||||||||
# volumes: | ||||||||||||
# - /sys/fs/cgroup:/sys/fs/cgroup:ro | ||||||||||||
# privileged: true | ||||||||||||
# published_ports: | ||||||||||||
# - "9021:9021" | ||||||||||||
# networks: | ||||||||||||
# - name: confluent | ||||||||||||
# Cluster 2 (Kraft) goups, groupnames will be changed during converge phase | ||||||||||||
- name: controller1-mig | ||||||||||||
hostname: controller1-mig.confluent | ||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -237,7 +237,7 @@ | |||||
vars: | ||||||
connect_url_input: "{{ kafka_connect_url }}" | ||||||
active_connectors_input: "{{ add_non_existent_connector }}" | ||||||
expected_message: "Connectors added or updated: test-connector-1: no configuration change, test-connector-2: ERROR error while adding new connector configuration (HTTP Error 500: Internal Server Error)." | ||||||
expected_message: "Connectors added or updated: test-connector-1: no configuration change, test-connector-2: ERROR error while adding new connector configuration (HTTP Error 500: Server Error)." | ||||||
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. Consider reviewing the updated error message; using 'Server Error' instead of the standard 'Internal Server Error' may lead to mismatches if the application returns the expected standard phrase.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
|
||||||
- import_role: | ||||||
name: confluent.test | ||||||
|
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.
Include a comment explaining why the 'control-center1' configuration is commented out to increase clarity and aid future maintenance.
Copilot uses AI. Check for mistakes.