The example che.yaml file is modified from this repo.
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
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1028 100 1028 0 0 1681 0 --:--:-- --:--:-- --:--:-- 1682 | |
| Using /etc/ansible/ansible.cfg as config file | |
| PLAYBOOK: main.yml ************************************************************* | |
| 1 plays in /opt/app-root/src/main.yml | |
| PLAY [testing] ***************************************************************** |
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
| virsh net-update ovsbr0 add --section portgroup --xml "<portgroup name='trunk'><vlan trunk='yes'><tag id='2970'/><tag id='2971'/></vlan></portgroup>" --config --live | |
| virsh net-update ovsbr0 add --section portgroup --xml "<portgroup name='vlan-2979'><vlan><tag id='2979'/></vlan></portgroup>" --config --live |
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
| Using /etc/ansible/ansible.cfg as config file | |
| Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc | |
| PLAYBOOK: main.yml ************************************************************* | |
| 2 plays in /opt/app-root/src/main.yml | |
| PLAY [localhost testing] ******************************************************* | |
| TASK [find files in tmp] ******************************************************* | |
| task path: /opt/app-root/src/main.yml:6 |
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
| apiVersion: v1 | |
| kind: Template | |
| metadata: | |
| creationTimestamp: null | |
| name: playbook2image-testing | |
| objects: | |
| #- apiVersion: v1 | |
| # kind: BuildConfig | |
| # metadata: | |
| # annotations: null |
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 | |
| RED='\033[0;31m' | |
| NC='\033[0m' # No Color | |
| set -x | |
| echo -e "\n${RED}>>> Build ansibleapp-base${NC}\n" | |
| cd /home/jcallen/Development/ansibleapp-library/ansibleapp-base |
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
| setw -g mode-keys vi | |
| # set Zsh as your default Tmux shell | |
| set-option -g default-shell /bin/zsh | |
| # UTF is great, let us use that | |
| #set -g utf8 | |
| #set-window-option -g utf8 on | |
| # Tmux should be pretty, we need 256 color for that |
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 jamgocoop/juniper-vpn | |
| RUN apt-get update && apt-get install -y iputils-ping |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH=/home/jcallen/.oh-my-zsh | |
| # Set name of the theme to load. Optionally, if you set this to "random" | |
| # it'll load a random theme each time that oh-my-zsh is loaded. | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
| ZSH_THEME="bureau" |