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

Add documentation for import FCP storage domain #36780

Merged
merged 1 commit into from
Feb 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions lib/ansible/modules/cloud/ovirt/ovirt_storage_domains.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@
fcp:
description:
- "Dictionary with values for fibre channel storage type:"
- "C(address) - Address of the fibre channel storage server."
- "C(port) - Port of the fibre channel storage server."
- "C(lun_id) - LUN id."
- "C(override_luns) - If I(True) FCP storage domain luns will be overridden before adding."
- "Note that these parameters are not idempotent."
Expand Down Expand Up @@ -247,6 +245,14 @@
address: 10.34.63.199
path: /path/export

# Import FCP storage domain:
- ovirt_storage_domains:
state: imported
name: data_fcp
host: myhost
data_center: mydatacenter
fcp: {}

# Update OVF_STORE:
- ovirt_storage_domains:
state: update_ovf_store
Expand Down