-
Notifications
You must be signed in to change notification settings - Fork 111
Remove edpm_iscsid_image container references #1923
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ data: | |
| vars: | ||
| timesync_ntp_servers: | ||
| - hostname: clock.redhat.com | ||
| edpm_iscsid_image: '{{ registry_url }}/openstack-iscsid:{{ image_tag }}' | ||
| # edpm_iscsid_image is no longer used - iscsid now runs on the host instead of in a container | ||
|
Contributor
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. just remove the line |
||
| edpm_logrotate_crond_image: '{{ registry_url }}/openstack-cron:{{ image_tag }}' | ||
| edpm_network_config_hide_sensitive_logs: false | ||
| edpm_network_config_os_net_config_mappings: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,7 @@ data: | |
| # CHANGEME -- see https://access.redhat.com/solutions/253273 | ||
| # edpm_bootstrap_command: | | ||
| # subscription-manager register --username {{ subscription_manager_username }} --password {{ subscription_manager_password }} | ||
| edpm_iscsid_image: '{{ registry_url }}/openstack-iscsid:{{ image_tag }}' | ||
| # edpm_iscsid_image is no longer used - iscsid now runs on the host instead of in a container | ||
|
Contributor
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. remove |
||
| edpm_logrotate_crond_image: '{{ registry_url }}/openstack-cron:{{ image_tag }}' | ||
| edpm_network_config_hide_sensitive_logs: false | ||
| edpm_network_config_os_net_config_mappings: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,4 +16,3 @@ spec: | |
| edpmServiceType: nova | ||
| containerImageFields: | ||
| - NovaComputeImage | ||
| - EdpmIscsidImage | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,7 +76,8 @@ export RELATED_IMAGE_BARBICAN_API_IMAGE_URL_DEFAULT=quay.io/podified-antelope-ce | |
| export RELATED_IMAGE_BARBICAN_WORKER_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-barbican-worker:current-podified | ||
| export RELATED_IMAGE_BARBICAN_KEYSTONE_LISTENER_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-barbican-keystone-listener:current-podified | ||
| export RELATED_IMAGE_EDPM_FRR_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-frr:current-podified | ||
| export RELATED_IMAGE_EDPM_ISCSID_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-iscsid:current-podified | ||
| # Deprecated: RELATED_IMAGE_EDPM_ISCSID_IMAGE_URL_DEFAULT is no longer used - iscsid now runs on the host | ||
| # export RELATED_IMAGE_EDPM_ISCSID_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-iscsid:current-podified | ||
|
Contributor
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. remove |
||
| export RELATED_IMAGE_EDPM_LOGROTATE_CROND_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-cron:current-podified | ||
| export RELATED_IMAGE_EDPM_MULTIPATHD_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-multipathd:current-podified | ||
| export RELATED_IMAGE_EDPM_NEUTRON_DHCP_AGENT_IMAGE_URL_DEFAULT=quay.io/podified-antelope-centos9/openstack-neutron-dhcp-agent:current-podified | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -329,9 +329,7 @@ func resolveGroupAnsibleVars(template *dataplanev1.NodeTemplate, group *ansible. | |
| if template.Ansible.AnsibleVars["edpm_frr_image"] == nil { | ||
| group.Vars["edpm_frr_image"] = containerImages.EdpmFrrImage | ||
| } | ||
| if template.Ansible.AnsibleVars["edpm_iscsid_image"] == nil { | ||
| group.Vars["edpm_iscsid_image"] = containerImages.EdpmIscsidImage | ||
| } | ||
| // edpm_iscsid_image is no longer used - iscsid now runs on the host instead of in a container | ||
|
Contributor
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. i don't think we need a comment here |
||
| if template.Ansible.AnsibleVars["edpm_logrotate_crond_image"] == nil { | ||
| group.Vars["edpm_logrotate_crond_image"] = containerImages.EdpmLogrotateCrondImage | ||
| } | ||
|
|
||
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.
why not just remove this from here? I don't think it needs a deprecation warning.