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
# ------------------------------------------------------------- | |
# Summary of installation steps of OKD Minishift using Homebrew | |
# ------------------------------------------------------------- | |
# Reference(s): | |
# https://docs.okd.io/latest/minishift/getting-started/index.html | |
# Tested in: | |
# ProductName: Mac OS X | |
# ProductVersion: 10.14 |
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
# ---------------------- | |
# Developer Setup in OSX | |
# ---------------------- | |
# NOTE: Skip the steps that you don't need. | |
# Reference(s): | |
# https://docs.brew.sh/Installation | |
# https://github.com/robbyrussell/oh-my-zsh | |
# https://docs.docker.com/docker-for-mac/install |
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 retry timing. the first one is always zero since it | |
# is the first attempt. value is in minutes. in this policy, | |
# we will get exactly 4 tries within a span of 6 minutes. | |
# so here, the 3rd attempt will be executed after 2 minutes | |
# immediately following the 2nd attempt. | |
app.retry.timings = ${APP_RETRY_TIMINGS:0,1,2,3} |
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
try { | |
final def output = [] | |
final shell = new Shell(this.script) | |
// find all target files | |
def path = args.path?: "." | |
shell.call(command: "find ${path} -name '*${args.decrypt.gpgExt}'", capture: true).split("\n").each { | |
final def file = new File(it) | |
final def parent = file.getParent() | |
final def tFile = file.getName() |