Skip to content

Instantly share code, notes, and snippets.

View malli1983's full-sized avatar

P.Mallikarjunarao malli1983

View GitHub Profile

Root Cause Analysis for AES EDI | JIRA Issue (AESEDI-53447) Date 2020-02-03 Authors Mallikarjunarao Operations Team Status Complete, resolved

Summary

@malli1983
malli1983 / Jenkinsfile
Created March 20, 2019 12:19 — forked from jonico/Jenkinsfile
Example for a full blown Jenkins pipeline script with multiple stages, input steps, injected credentials, heroku deploy, sonarqube and artifactory integration, multiple Git commit statuses, PR merge vs branch build detection, REST API calls to GitHub deployment API, stage timeouts, stage concurrency constraints, ...
#!groovy
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
/*
Please make sure to add the following environment variables:
HEROKU_PREVIEW=<your heroku preview app>
HEROKU_PREPRODUCTION=<your heroku pre-production app>
HEROKU_PRODUCTION=<your heroku production app>
# Reference:
https://www.cloudgear.net/blog/2015/5-minutes-kubernetes-setup/
# install homebrew and cask
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install virtualbox
brew cask install virtualbox
# install dockertoolbox
@malli1983
malli1983 / kubernetes_commands.md
Created April 25, 2018 05:33 — forked from edsiper/kubernetes_commands.md
Kubernetes Useful Commands
@malli1983
malli1983 / 1_kubernetes_on_macOS.md
Created April 4, 2018 11:02 — forked from kevin-smets/1_kubernetes_on_macOS.md
Local Kubernetes setup on macOS with minikube on VirtualBox and local Docker registry

Requirements

Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:

sysctl -a | grep machdep.cpu.features | grep VMX

If there's output, you're good!

Prerequisites