- Ya existe una service profile template
- KUBAM ya está instalado
- supongamos que solo hay uno UCS para empezar
- Los isos ya están mapeados
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
from ucsmsdk.ucshandle import UcsHandle | |
from ucsmsdk.ucsexception import UcsException | |
from urllib2 import HTTPError | |
import argparse | |
import os, sys | |
def ucs_login(username, password, server): | |
handle = UcsHandle(server, username, password) | |
try: | |
handle.login() |
- 4GB of RAM
- 8GB of Disk space
I did mine using VMM on an old RedHat server I had.
SSH into machine (I used: [email protected]
)
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
# create a git repo | |
``` | |
git init mygit | |
cd mygit | |
echo "this is foo" > foo.txt | |
git status | |
git add . | |
git status | |
git commit -am "added foo" | |
echo "this is a change in foo" > foo.txt |
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
--- | |
- name: remove old consul | |
sudo: yes | |
yum: | |
name: "{{ item }}" | |
state: absent | |
with_items: | |
- consul-0.5.2-3.el7.centos.x86_64 | |
- consul-ui-0.5.2-3.el7.centos.x86_64 |
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
brew install homebrew/versions | |
brew install homebrew/boneyard | |
brew unlink docker | |
brew install homebrew/versions/docker # get a list of docker versions | |
brew install homebrew/versions/docker171 |
These instructions are for running on the command line. Most of this you can also do through the Horizon dashboard. These instructions were tested on the Ice House release on a Metacloud distribution of OpenStack but should be similar if not the same across other versions/distributions of OpenStack.
Make sure the environment variables are set for OpenStack such as:
OS_TENANT_ID
OS_PASSWORD
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
# add remote user | |
GRANT ALL privileges on *.* to 'tdiet'@'%' identified by 'PASSWORD' with grant option; | |
# verify privileges of remote user | |
mysql> SELECT * from information_schema.user_privileges where grantee like "'tdiet'%"; |