This file contains 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
The interlock at github.com/anantpatil/interlock/tree/avi-extn | |
integrates Avi with Docker UCP. | |
To use interlock, perform following steps: | |
0. Pre-requisites: | |
a. UCP version 2.1 or above | |
b. Docker version 1.13 or above | |
c. docker-compose 1.11 or above |
This file contains 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
[Theme] | |
name = desert | |
default = 0 | |
[EditorWindow] | |
font = source code pro | |
font-size = 9 | |
This file contains 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
[Solarized Dark] | |
normal-foreground = #839496 | |
normal-background = #002b36 | |
keyword-foreground = #859900 | |
keyword-background = #002b36 | |
builtin-foreground = #b58900 | |
builtin-background = #002b36 | |
comment-foreground = #586e75 | |
comment-background = #002b36 | |
string-foreground = #2aa198 |
This file contains 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
[[local|localrc]] | |
DATABASE_PASSWORD=stackdb | |
ADMIN_PASSWORD=nomoresecrete | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
# openssl rand -hex 10 | |
SERVICE_TOKEN=thequickbrownfox | |
RABBIT_PASSWORD=stackqueue | |
# Host IP to connect to local network |
This file contains 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
[[local|localrc]] | |
DATABASE_PASSWORD=stackdb | |
ADMIN_PASSWORD=nomoresecrete | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
# openssl rand -hex 10 | |
SERVICE_TOKEN=thequickbrownfox | |
RABBIT_PASSWORD=stackqueue | |
#DEST=/home/passwordlessuserondebian |
This file contains 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
How to setup: | |
---- | |
On Ubuntu, download the devstack from | |
$ git clone https://github.com/openstack-dev/devstack.git devstack | |
and create the stack user by running the command as root. This is | |
important. | |
$ sudo su | |
$ devstac/tools/create-stack-user.sh | |
$ exit |
This file contains 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
@echo OFF | |
start putty.exe -load "Solarized Dark" -ssh %* | |
exit |
This file contains 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
# Lines configured by zsh-newuser-install | |
HISTFILE=~/.histfile | |
HISTSIZE=1000 | |
SAVEHIST=1000 | |
bindkey -v | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/patilana/.zshrc' | |
autoload -Uz compinit |
This file contains 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
" set soft wrap, automatic line break | |
" show breaks in like with ... | |
" set nolist as it messes up with linebreak | |
syntax on | |
set wrap lbr nolist showbreak=… | |
"set sw=4 "Use this when coding python | |
set sw=4 | |
set ai wm=5 sm | |
set smarttab | |
set smartindent |
This file contains 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 bash | |
# A script to select added/modified files from working copy and commit | |
# them. Before commiting, takes the comments as well. | |
# TODO: Commit to svn repository? May be not, just to review and commit | |
# later whenever you want. | |
commit_script=.commit.sh | |
comments_file=.comments.txt |
NewerOlder