Skip to content

Commit

Permalink
Fixes #36895 - Fix capitalization on Virt-who Configurations sidebar …
Browse files Browse the repository at this point in the history
…link
  • Loading branch information
chris1984 committed May 16, 2024
1 parent aa0fc52 commit 09aa8fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,41 @@ A Foreman plugin to make virt-who configuration easier. This provides a simple U

## Installation

This plugins requires Katello to be installed in your Foreman instance. If it's there, simply install a package with the plugin (rpm only), run migrations and seed by running,
### Development setup:

* This plugin requires Katello to be installed in your Foreman instance. If it's there, simply install a package with the plugin (rpm only), run migrations and seed by running:

```
dnf install rubygem-foreman_virt_who_configure
foreman-rake db:migrate
foreman-rake db:seed
```

### Production setup:

* Run the following command to install the plugin with the Foreman Installer.
```
foreman-installer --enable-foreman-plugin-virt-who-configure
foreman-installer --enable-foreman-cli-virt-who-configure
```

## Usage

After installation there is new "Virt-who configurations" menu added in "Infrastructure" tab. The "Virt-who configurations" -> "Create Config" provides options to add details about configuration, most of the fields are having inline help.
* After installation there is new "Virt-who Configurations" menu added in "Infrastructure" tab. The "Virt-who Configurations" -> "Create Config" provides options to add details about configuration, most of the fields have inline help.

The virt-who configuration should be in an organization. If an organization has not selected then Owner field would be displayed where it is required to select organization. If organization is already selected then Owner field is not displayed and virt-configuration will be automatically created in selected organization scope.
* The virt-who configuration should be in an organization. If an organization has not selected then Owner field would be displayed where it is required to select organization. If an organization is already selected then Owner field is not displayed and virt-configuration will be automatically created in the selected organization scope.

To deploy the configuration click on configuration name on "Virt-who configurations" list page, "Overview" page shows details about configuration and "Deploy page" has all details on deploying configuration.
* To deploy the configuration click on configuration name on "Virt-who Configurations" list page, "Overview" page shows details about configuration and "Deploy page" has all details on deploying configuration.

More details are available at - https://theforeman.org/plugins/foreman_virt_who_configure
* More details are available at - https://theforeman.org/plugins/foreman_virt_who_configure

## Contributing

Fork and send a Pull Request. Thanks!

## Copyright

Copyright (c) 2023 - Foreman team
Copyright (c) 2024 - Foreman team

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion lib/foreman_virt_who_configure/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Engine < ::Rails::Engine
# add menu entry
menu :top_menu, :virt_who_configs,
url_hash: { controller: 'foreman_virt_who_configure/configs', action: :index },
caption: N_('Virt-who configurations'),
caption: N_('Virt-who Configurations'),
parent: :infrastructure_menu,
after: :compute_resources

Expand Down

0 comments on commit 09aa8fc

Please sign in to comment.