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
APPLIANCE_ROOT=/opt/manageiq/manageiq-appliance | |
APPLICATION_INIT_DELAY=15 | |
APP_ROOT_PERSISTENT=/persistent | |
APP_ROOT_PERSISTENT_REGION=/persistent-region |
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
%{!?source_ref: %global source_ref master} | |
%{!?zabbix_version: %global zabbix_version 3.2.6} | |
%global selinux_variants mls targeted | |
%define upstream_name zabbix-docker-monitoring | |
Name: zabbix-agent-module-docker | |
Version: 1.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
$ oc import-image manageiq-pods-app --from=docker.io/manageiq/manageiq-pods:app-latest-fine --all=false --confirm | |
The import completed successfully. | |
Name: manageiq-pods-app | |
Namespace: manageiq | |
Created: Less than a second ago | |
Labels: <none> | |
Annotations: openshift.io/image.dockerRepositoryCheck=2017-06-29T15:20:53Z | |
Docker Pull Spec: 172.16.221.48:5000/manageiq/manageiq-pods-app | |
Unique Images: 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
isPR = env.BRANCH_NAME ? env.BRANCH_NAME.startsWith("PR-") : false | |
if (isPR) { | |
checkout scm:[$class: 'GitSCM', userRemoteConfigs: [[ url: repoURL, credentialsId: gitCredentialId ]]] | |
sh "git fetch origin pull/'${numberPR}'/head:'${BRANCH_NAME}'" | |
sh "git checkout '${BRANCH_NAME}'" | |
} else { | |
checkout scm:[$class: 'GitSCM', userRemoteConfigs: [[ url: repoURL, credentialsId: gitCredentialId ]]] | |
sh 'git checkout master' | |
} |
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
source appgate_ps1.sh | |
# Obviously manage your PS1 however you are gonna mange it... this is just an example | |
PS1="\u@\h \W \$(__appgate_ps1) $" |
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
function colorize() { | |
case "${2}" in | |
black) | |
FG_COLOR=0 | |
;; | |
red) | |
FG_COLOR=1 | |
;; | |
green) | |
FG_COLOR=2 |
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
source terraform_ps1.sh | |
# Obviously manage your PS1 however you are gonna mange it... this is just an example | |
PS1="\u@\h \W \$(__terraform_ps1) $" |
OlderNewer