This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2014-02-12 11:05:57,746] [i-E52B464D] [DEBUG]: reset_ssh_connection for:i-E52B464D | |
| [2014-02-12 11:05:57,868] [i-E52B464D] [DEBUG]: Connecting ssh i-E52B464D | |
| [2014-02-12 11:05:57,868] [i-E52B464D] [DEBUG]: SSH connection has hostname:10.111.103.30 user:root and keypath: /Users/viglesias/Dropbox/git/eutester/testcases/cloud_user/instances/keypair-1392230738.09.pem | |
| TESTUNIT FAILED: CreateImageTraceback (most recent call last): | |
| File "/Users/viglesias/Dropbox/git/eutester/eutester/eutestcase.py", line 277, in run | |
| ret = self.method(*self.args, **self.kwargs) | |
| File "/Users/viglesias/Dropbox/git/eutester/testcases/cloud_user/instances/bfebstest.py", line 123, in CreateImage | |
| instance.reset_ssh_connection() | |
| File "/Users/viglesias/Dropbox/git/eutester/eutester/euinstance.py", line 269, in reset_ssh_connection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import boto | |
| import sys | |
| import time | |
| import random | |
| import string | |
| import os | |
| from concurrent.futures import ThreadPoolExecutor | |
| bucket = "music-backup" | |
| print "Uploading to bucket: " + bucket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -xe | |
| echo "Enter this machines IP address." | |
| echo | |
| ifconfig | grep 'inet ' | |
| echo | |
| read -p "Address: " CHEF_IP | |
| read -s -p "Enter SSH password for Eucalyptus components: " SSH_PASSWORD | |
| echo | |
| echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| # Software License Agreement (BSD License) | |
| # | |
| # Copyright (c) 2013, Eucalyptus Systems, Inc. | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this software in source and binary forms, with or | |
| # without modification, are permitted provided that the following conditions | |
| # are met: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import boto | |
| from boto.regioninfo import RegionInfo | |
| from troposphere import Base64, FindInMap, GetAtt | |
| from troposphere import Parameter, Ref, Template | |
| import troposphere.ec2 as ec2 | |
| region = RegionInfo() | |
| region.endpoint = "10.111.5.163" | |
| region.name = "eucalyptus" | |
| stack_name = "vic-test-1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "eucalyptus": { | |
| "yum-options": "--nogpg", | |
| "eucalyptus-repo": "http://downloads.eucalyptus.com/software/eucalyptus/nightly/4.0/centos/6/x86_64/", | |
| "euca2ools-repo": "http://downloads.eucalyptus.com/software/euca2ools/nightly/3.1/centos/6/x86_64/", | |
| "install-load-balancer": false, | |
| "install-imaging-worker": false, | |
| "topology": { | |
| "clc-1": "10.0.1.188", | |
| "walrus": "10.0.1.188", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global | |
| log 127.0.0.1 local2 | |
| chroot /var/lib/haproxy | |
| pidfile /var/run/haproxy.pid | |
| maxconn 4000 | |
| user haproxy | |
| group haproxy | |
| daemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Listen 0.0.0.0:8888 | |
| <VirtualHost *:8888> | |
| ProxyRequests off | |
| ServerName d-12.qa1.eucalyptus-systems.com | |
| <Proxy balancer://mycluster> | |
| BalancerMember http://10.111.5.137:8888 | |
| BalancerMember http://10.111.5.138:8888 | |
| Order Deny,Allow | |
| Deny from none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Software License Agreement (BSD License) | |
| # | |
| # Copyright (c) 2009-2014, Eucalyptus Systems, Inc. | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this software in source and binary forms, with or | |
| # without modification, are permitted provided that the following conditions | |
| # are met: | |
| # | |
| # Redistributions of source code must retain the above |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Software License Agreement (BSD License) | |
| # | |
| # Copyright (c) 2009-2011, Eucalyptus Systems, Inc. | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this software in source and binary forms, with or | |
| # without modification, are permitted provided that the following conditions | |
| # are met: | |
| # | |
| # Redistributions of source code must retain the above |