-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsynergy_create_server_profile_with_deployment_plan.yml
67 lines (64 loc) · 2.7 KB
/
synergy_create_server_profile_with_deployment_plan.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
###
# Copyright (2020) Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###
---
###
# This playbook is only compatible with HPE Synergy Enclosures
# This playbook will create server profile with Nic connections using server profile template, deployment plan and os custom attributes
###
- name: Deploy Server Profile from Template, selecting the right connection for Management NIC
hosts: all
gather_facts: no
vars:
- config: "{{ playbook_dir }}/oneview_config.json"
- deployment_plan_name: 'Deploy-HPE-Esxi-6.2-U2'
- management_network_name: 'mgmt'
- server_template_name: 'SP_hcp'
tasks:
- name: Gather facts about the Server Profile Template to retrieve connection information
oneview_server_profile_template_facts:
config: "{{ config }}"
name: "{{ server_template_name }}"
delegate_to: localhost
- name: Find the connection by management network name
set_fact: connection={{ server_profile_templates.0.connectionSettings.connections | selectattr('name', 'equalto', management_network_name) | first }}
- name : "Create server profile with deployment plan {{ deployment_plan_name }}"
delegate_to: localhost
oneview_server_profile:
config: "{{ config }}"
data:
name: "{{ inventory_hostname }}"
serverProfileTemplateName: "{{ server_template_name }}"
osDeploymentSettings:
osDeploymentPlanName: "{{ deployment_plan_name }}"
osCustomAttributes:
- name: ManagementNIC.connectionid
value: '{{ connection.id }}'
- name: ManagementNIC.dhcp
value: false
- name: ManagementNIC.ipv4disable
value: false
- name: ManagementNIC.networkuri
value: '{{ connection.networkUri }}'
- name: ManagementNIC.constraint
value: auto
- name: Hostname
value: myhost
- name: DomainName
value: testhpe.com
- name: SSH
value: enabled
- name: Password
value: None