Skip to content

Instantly share code, notes, and snippets.

View vutkin's full-sized avatar

Viktor Utkin vutkin

  • EPAM Systems
  • Earth
View GitHub Profile
def workspace = pwd()
def dirList = ["step1", "step2", "step3", "step4", "step5"]
def stepsForParallel = [:]
dirList.each {
stepsForParallel[it] = { dir(it) {
sh "npm install --only=dev typescript"
}
}
}
sudo sh -c "echo -n 'sammy:' >> /etc/nginx/.htpasswd"
sudo sh -c "openssl passwd -apr1 >> /etc/nginx/.htpasswd"
https://www.digitalocean.com/community/tutorials/how-to-set-up-password-authentication-with-nginx-on-ubuntu-14-04
def jobname = "the-job-name"
def buildnum = 85
def job = Jenkins.instance.getItemByFullName(jobname)
for (build in job.builds) {
if (buildnum == build.getNumber().toInteger()){
if (build.isBuilding()){
build.doStop();
build.doKill();
@vutkin
vutkin / get-latest-tag-on-git.sh
Created July 12, 2018 20:23 — forked from rponte/get-latest-tag-on-git.sh
Getting latest tag on git repository
# The command finds the most recent tag that is reachable from a commit.
# If the tag points to the commit, then only the tag is shown.
# Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object
# and the abbreviated object name of the most recent commit.
git describe
# With --abbrev set to 0, the command can be used to find the closest tagname without any suffix:
git describe --abbrev=0
# other examples
@vutkin
vutkin / maintenance-mode.conf
Created July 13, 2018 15:34 — forked from rictorres/maintenance-mode.conf
nginx maintenance mode
server {
listen 80;
server_name mysite.com;
root /var/www/mysite.com/;
location / {
if (-f $document_root/maintenance.html) {
return 503;
}
... # the rest of your config goes here
git tag -l --points-at HEAD
@vutkin
vutkin / logtest.py
Created July 27, 2018 07:43 — forked from sweenzor/logtest.py
Writing to syslog with Python's logging library
import logging
import logging.handlers
log = logging.getLogger(__name__)
log.setLevel(logging.DEBUG)
handler = logging.handlers.SysLogHandler(address = '/dev/log')
formatter = logging.Formatter('%(module)s.%(funcName)s: %(message)s')
@vutkin
vutkin / Jenkinsfile.groovy
Created August 7, 2018 13:30 — forked from Faheetah/Jenkinsfile.groovy
Jenkinsfile idiosynchrasies with escaping and quotes
node {
echo 'No quotes, pipeline command in single quotes'
sh 'echo $BUILD_NUMBER'
echo 'Double quotes are silently dropped'
sh 'echo "$BUILD_NUMBER"'
echo 'Even escaped with a single backslash they are dropped'
sh 'echo \"$BUILD_NUMBER\"'
echo 'Using two backslashes, the quotes are preserved'
sh 'echo \\"$BUILD_NUMBER\\"'
echo 'Using three backslashes still results in preserving the single quotes'
@vutkin
vutkin / new empty git branch.md
Created August 13, 2018 18:24 — forked from ozh/new empty git branch.md
Create a new empty branch in Git
$ git checkout --orphan NEWBRANCH
$ git rm -rf .

--orphan creates a new branch, but it starts without any commit. After running the above command you are on a new branch "NEWBRANCH", and the first commit you create from this state will start a new history without any ancestry.

You can then start adding files and commit them and they will live in their own branch. If you take a look at the log, you will see that it is isolated from the original log.

@vutkin
vutkin / openshift-jq-remove-trigger.sh
Created August 20, 2018 14:40 — forked from abn/openshift-jq-remove-trigger.sh
openshift-jq: remove triggers example
jq '.spec.triggers |= map(select(contains({"type": "ImageChange"}) | not))'