Skip to content

Commit

Permalink
Merge pull request #14020 from mzazrivec/core_changes_for_ansible_cre…
Browse files Browse the repository at this point in the history
…dentials

Core changes for Ansible Credentials UI
  • Loading branch information
martinpovolny committed Feb 27, 2017
2 parents a571827 + fcb0e93 commit f31d512
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
11 changes: 11 additions & 0 deletions locale/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,17 @@ en:
LdapServer: LDAP Server
LoadBalancer: Load Balancer
ManageIQ::Providers::BaseManager: Provider
ManageIQ::Providers::AutomationManager::Authentication: Credential
ManageIQ::Providers::AnsibleTower::AutomationManager::AmazonCredential: Credential (Amazon)
ManageIQ::Providers::AnsibleTower::AutomationManager::AzureCredential: Credential (Microsoft Azure)
ManageIQ::Providers::AnsibleTower::AutomationManager::GoogleCredential: Credential (Google)
ManageIQ::Providers::AnsibleTower::AutomationManager::MachineCredential: Credential (Machine)
ManageIQ::Providers::AnsibleTower::AutomationManager::NetworkCredential: Credential (Network)
ManageIQ::Providers::AnsibleTower::AutomationManager::OpenstackCredential: Credential (OpenStack)
ManageIQ::Providers::AnsibleTower::AutomationManager::RackspaceCredential: Credential (Rackspace)
ManageIQ::Providers::AnsibleTower::AutomationManager::Satellite6Credential: Credential (Satellite)
ManageIQ::Providers::AnsibleTower::AutomationManager::ScmCredential: Credential (SCM)
ManageIQ::Providers::AnsibleTower::AutomationManager::VmwareCredential: Credential (VMware)
ManageIQ::Providers::AnsibleTower::AutomationManager: Automation Manager (Ansible Tower)
ManageIQ::Providers::AnsibleTower::AutomationManager::ConfigurationScript: Job Template (Ansible Tower)
ManageIQ::Providers::AnsibleTower::AutomationManager::Playbook: Playbook (Ansible Tower)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
#
# This is an MIQ Report configuration file
# Single value parameters are specified as:
# single_value_parm: value
# Multiple value parameters are specified as:
# multi_value_parm:
# - value 1
# - value 2
#

# Report title
title: Credentials

# Menu name
name: Credentials

# Main DB table report is based on
db: ManageIQ::Providers::AutomationManager::Authentication

# Columns to fetch from the main table
cols:
- name
- type
- userid
- created_on
- updated_on

# Included tables (joined, has_one, has_many) and columns
include:

# Order of columns (from all tables)
col_order:
- name
- type
- userid
- created_on
- updated_on

# Column titles, in order
headers:
- Name
- Type
- User
- Created On
- Updated On


col_formats:
-
- model_name
-
-
-

# Condition(s) string for the SQL query
conditions:

# Order string for the SQL query
order: Ascending

# Columns to sort the report on, in order
sortby:
- name

# Group rows (y=yes,n=no,c=count)
group: n

# Graph type
# Bar
# Column
# ColumnThreed
# ParallelThreedColumn
# Pie
# PieThreed
# StackedBar
# StackedColumn
# StackedThreedColumn

graph:

# Dimensions of graph (1 or 2)
# Note: specifying 2 for a single dimension graph may not return expected results
dims:

0 comments on commit f31d512

Please sign in to comment.