Github user harikrishna-patnala commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/809#discussion_r39363075
  
    --- Diff: tools/marvin/marvin/config/BareMetal.cfg ---
    @@ -0,0 +1,194 @@
    +{
    +    "zones": [
    +        {
    +            "name": "Basic",
    +            "dns1": "10.140.50.6",
    +            "physical_networks": [
    +                {
    +                    "broadcastdomainrange": "Pod",
    +                    "name": "Baremetal-pnet",
    +                    "traffictypes": [
    +                        {
    +                            "typ": "Guest"
    +                        },
    +                        {
    +                            "typ": "Management"
    +                        }
    +                    ],
    +                    "isolationmethods": [
    +                                            "L3"
    +                                        ],
    +                    "providers": [
    +                        {
    +                            "broadcastdomainrange": "ZONE",
    +                            "name": "VirtualRouter"
    +                        },
    +                        {
    +                            "broadcastdomainrange": "ZONE",
    +                            "name": "BaremetalPxeProvider",
    +                            "devices":  [
    +                                {
    +                                    "url":  "10.147.42.200",
    +                                    "username": "root",
    +                                    "password": "password",
    +                                    "tftpdir":    "/var/lib/tftpboot",
    +                                    "type": "KICK_START"
    +                                }
    +                            ]
    +                        },
    +                        {
    +                            "broadcastdomainrange": "ZONE",
    +                            "name": "BaremetalDhcpProvider",
    +                            "devices":  [
    +                                {
    +                                    "url":  "10.147.42.200",
    +                                    "username": "root",
    +                                    "password": "password",
    +                                    "type": "DHCPD"
    +                                }
    +                            ]
    +                        },
    +                        {
    +                            "broadcastdomainrange": "ZONE",
    +                            "name": "SecurityGroupProvider"
    +                        }
    +                    ]
    +                }
    +            ],
    +            "networktype": "Basic",
    +            "pods": [
    +                {
    +                    "endip": "10.147.42.110",
    +                    "name": "POD0",
    +                    "startip": "10.147.42.100",
    +                    "netmask": "255.255.254.0",
    +                    "guestIpRanges": [
    +                        {
    +                            "startip": "10.147.42.111",
    +                            "endip": "10.147.42.120",
    +                            "netmask": "255.255.254.0",
    +                            "gateway": "10.147.42.1"
    +                        }
    +                    ],
    +                    "clusters": [
    +                        {
    +                            "clustername": "C0",
    +                            "hypervisor": "BareMetal",
    +                            "hosts": [
    +                                {
    +                                    "username": "root",
    +                                    "url": "http://10.147.42.23";,
    +                                    "password": "calvin",
    +                                    "hostmac": "D4:AE:52:BC:E5:52",
    +                                    "cpunumber": "1",
    +                                    "cpuspeed": "1000",
    +                                    "memory": "1024"
    +                                }
    +                            ],
    +                            "clustertype": "CloudManaged"
    +                        }
    +                    ],
    +                    "gateway": "10.147.42.1"
    +                }
    +            ],
    +            "internaldns1": "10.140.50.6"
    +        }
    +    ],
    +    "dbSvr": {
    +        "dbSvr": "10.147.38.153",
    +        "passwd": "password",
    +        "db": "cloud",
    +        "port": 3306,
    +        "user": "cloud"
    +    },
    +    "logger": {
    +        "LogFolderPath": "/tmp/"
    +    },
    +    "globalConfig": [
    +        {
    +            "name": "storage.cleanup.interval",
    +            "value": "300"
    +        },
    +        {
    +            "name": "vm.op.wait.interval",
    +            "value": "5"
    +        },
    +        {
    +            "name": "default.page.size",
    +            "value": "10000"
    +        },
    +        {
    +            "name": "instance.name",
    +            "value": "QA"
    +        },
    +        {
    +            "name": "workers",
    +            "value": "10"
    +        },
    +        {
    +            "name": "account.cleanup.interval",
    +            "value": "600"
    +        },
    +        {
    +            "name": "guest.domain.suffix",
    +            "value": "sandbox.kvm"
    +        },
    +        {
    +            "name": "expunge.delay",
    +            "value": "60"
    +        },
    +        {
    +            "name": "vm.allocation.algorithm",
    +            "value": "random"
    +        },
    +        {
    +            "name": "expunge.interval",
    +            "value": "60"
    +        },
    +        {
    +            "name": "project.invite.timeout",
    +            "value": "300"
    +        },
    +        {
    +            "name": "network.gc.interval",
    +            "value": "60"
    +        },
    +        {
    +            "name": "network.gc.wait",
    +            "value": "60"
    +        },
    +        {
    +            "name": "expunge.workers",
    +            "value": "3"
    +        },
    +        {
    +            "name": "check.pod.cidrs",
    +            "value": "true"
    +        },
    +        {
    +            "name": "secstorage.allowed.internal.sites",
    +            "value": "10.147.28.7/32"
    +        },
    +        {
    +            "name": "direct.agent.load.size",
    +            "value": "1000"
    +        },
    +        {
    +            "name": "enable.dynamic.scale.vm",
    +            "value": "true"
    +        },
    +        {
    +            "name": "execute.in.sequence.hypervisor.commands",
    +            "value": "true"
    +        }
    --- End diff --
    
    @sanju1010 , we also need to set the configuration parameter 
"baremetal.provision.done.notification.enabled" to false. This parameter is 
applicable only for Baremetal advanced zone.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to