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
| baz@baz-heat-testing:~/reddwarf-integration/scripts$ sudo -u baz /usr/bin/ssh-keygen -f ~baz/id_rsa -q | |
| Sorry, user baz is not allowed to execute '/usr/bin/ssh-keygen -f /home/baz/id_rsa -q' as baz on baz-heat-testing. | |
| baz@baz-heat-testing:~/reddwarf-integration/scripts$ sudo /usr/bin/ssh-keygen -f ~baz/id_rsa -q | |
| Enter passphrase (empty for no passphrase): | |
| baz@baz-heat-testing:~/reddwarf-integration/scripts$ |
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
| ******************************************************************************* | |
| Uploading the image to glance. | |
| ******************************************************************************* | |
| IMAGE ID: 17d74784-93e1-447b-862c-1c475b274554 | |
| ******************************************************************************* | |
| Registering Glance image 17d74784-93e1-447b-862c-1c475b274554 with Reddwarf... | |
| ******************************************************************************* |
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
| 12.04.2 vm | |
| py27: commands succeeded | |
| congratulations :) | |
| root@testing-pbr:~/rd-submodule-recreate/reddwarf# git --version | |
| git version 1.7.9.5 | |
| mac | |
| py27: commands succeeded |
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
| "Mappings" : { | |
| "AWSInstanceType2Arch" : { | |
| "blah" : { "Arch" : "32" }, | |
| }, <--- Says an error on this line | |
| } | |
| Expecting property name: line 4 column 9 |
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
| HeatTemplateFormatVersion: '2012-12-12' | |
| Description: a test for mysql | |
| Parameters: | |
| KeyName: | |
| Description: Key for the sshing | |
| Type: String | |
| InstanceType: | |
| Description: flavor | |
| Type: String | |
| Default: m1.tiny |
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
| HeatTemplateFormatVersion: '2012-12-12' | |
| Description: a test for mysql | |
| Parameters: | |
| KeyName: | |
| Description: Key for the sshing | |
| Type: String | |
| InstanceType: | |
| Description: flavor | |
| Type: String | |
| Default: m1.tiny |
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
| guest API: | |
| def shit_just_got_wierd(self, revert_options): | |
| self.impl.shit_just_got_wierd(revert_options) | |
| guest IMPL: | |
| def shit_just_got_wierd(self, revert_options): | |
| self.update_config_file(revert_options['memory']) |
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
| git clone https://github.com/openstack/python-troveclient.git | |
| cd python-troveclient | |
| git fetch https://review.openstack.org/openstack/python-troveclient refs/changes/12/33412/4 && git checkout FETCH_HEAD | |
| tox |
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
| 1:01 PM imsplitbit ok | |
| 1:01 PM imsplitbit Clustering API | |
| 1:01 PM imsplitbit ready? go | |
| 1:02 PM vipul can you please paste the link again? | |
| 1:02 PM imsplitbit https://wiki.openstack.org/wiki/Trove-Replication-And-Clustering-API | |
| 1:02 PM SlickNik Thanks! | |
| 1:04 PM KennethWilke lifeless: i dunno if it might help, but the output of my kickstart is at https://gist.github.com/KennethWilke/5878664#file-dib-log-L974 | |
| 1:04 PM lifeless Building elements: base vm guest mysql | |
| 1:04 PM lifeless is the key line | |
| 1:04 PM lifeless so the image looks fine. |
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
| def _write_mycnf(self, admin_password, config_location, config_contents): | |
| """ | |
| Install the set of mysql my.cnf templates. | |
| Update the os_admin user and password to the my.cnf | |
| file for direct login from localhost | |
| """ | |
| LOG.info(_("Writing my.cnf templates.")) | |
| if admin_password is None: | |
| admin_password = get_auth_password() |