Skip to content
Snippets Groups Projects
Commit 7b9ab3a4 authored by Trung Nguyen's avatar Trung Nguyen
Browse files

Merge branch 'dgxdeploy' into 'master'

Dgxdeploy

See merge request hpc-team/ansible_cluster_in_a_box!299

Former-commit-id: 3b6c548f
parents 9a31b019 d177017a
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,11 @@ parameters: ...@@ -14,6 +14,11 @@ parameters:
label: Image ID label: Image ID
description: Centos Image description: Centos Image
default: c47c3acb-9657-4243-9e14-e6c676157e3b #with NetworkManager default: c47c3acb-9657-4243-9e14-e6c676157e3b #with NetworkManager
rhel_77_image_id:
type: string
label: Image ID
description: Rhel Image
default: 19993115-ad60-4979-bdfb-67ae7a77e40c
ssh_key: ssh_key:
type: string type: string
default: gc_key default: gc_key
...@@ -252,6 +257,27 @@ resources: ...@@ -252,6 +257,27 @@ resources:
networks: networks:
- network: { get_param: NetID } - network: { get_param: NetID }
ComputeNodeRHEL:
type: "OS::Heat::ResourceGroup"
properties:
count: 1
resource_def:
type: "OS::Nova::Server"
properties:
#availability_zone: { get_param: avz }
flavor: m3.xsmall
image: { get_param: rhel_77_image_id }
key_name: { get_param: ssh_key }
name:
list_join: [ '-', [ { get_param: "OS::stack_name" }, 'computerhel%index%' ]]
security_groups: [ default, { get_resource: SSHMonashSecGroup }, { get_resource: SlurmSecGroup }, { get_resource: NFSSecGroup } ]
metadata:
ansible_host_groups: [ DGXRHELNodes ]
ansible_ssh_user: cloud-user
project_name: { get_param: project_name }
networks:
- network: { get_param: NetID }
# PySSHauthz: # PySSHauthz:
# type: "OS::Nova::Server" # type: "OS::Nova::Server"
# properties: # properties:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment