Skip to content
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

Re-worded "Ansible Automation Inside" to "Embedded Ansible" for standardisation #19081

Merged
merged 1 commit into from
Aug 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::ConfigurationScript < ManageIQ::Providers::EmbeddedAutomationManager::ConfigurationScript
FRIENDLY_NAME = "Ansible Automation Inside Job Template".freeze
FRIENDLY_NAME = "Embedded Ansible Job Template".freeze

include ManageIQ::Providers::EmbeddedAnsible::CrudCommon

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::ConfigurationScriptSource < ManageIQ::Providers::EmbeddedAutomationManager::ConfigurationScriptSource
FRIENDLY_NAME = "Ansible Automation Inside Project".freeze
FRIENDLY_NAME = "Embedded Ansible Project".freeze

validates :name, :presence => true # TODO: unique within region?
validates :scm_type, :presence => true, :inclusion => { :in => %w[git] }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Credential < Mana
EXTRA_ATTRIBUTES = {}.freeze
API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze

FRIENDLY_NAME = "Ansible Automation Inside Credential".freeze
FRIENDLY_NAME = "Embedded Ansible Credential".freeze

include ManageIQ::Providers::EmbeddedAnsible::CrudCommon

Expand Down