Skip to content

Instantly share code, notes, and snippets.

View ibabiankou's full-sized avatar
🤔

Ivan Babiankou ibabiankou

🤔
View GitHub Profile
# Definition of the recommended jobs.
orbs:
picnic: PicnicSupermarket/picnic-orb@0.1.0
# Actual workflow to build this project.
workflows:
the-workflow:
jobs:
- picnic/java-build:
# It's NOT possible to define environment variables at this level.
#!/usr/bin/env bash
shopt -s extglob
# touch runner_entrypoint.sh && chmod +x runner_entrypoint.sh && vi runner_entrypoint.sh
while :
do
./run.sh --once
echo "Cleaning up the workspace..."
### Keybase proof
I hereby claim:
* I am ibabiankou on github.
* I am ibabiankou (https://keybase.io/ibabiankou) on keybase.
* I have a public key ASA6cJmSiUtfzdlLKLReR-CFVWVwd7XZO_ExaLg6NklCLwo
To claim this, I am signing this object:
@ibabiankou
ibabiankou / prepare-master.sh
Last active March 25, 2018 20:58
Minimal scripts to setup Kubernetes cluster using kubeadm.
#!/usr/bin/env bash
#
# Prepares machine to become part of kubernetes cluster(by executing prepare-node.sh) then initializes master.
#
# Allows adding Subject Alternative Names(SANs) so master could be accessed from outside using provided host.
#
# Installs flannel as a pod network plugin.
#
# Usage:
# curl -Ls https://gist.github.com/ibabiankou/fc226c19d28595a7a7d849cdf568e0c4/raw/prepare-master.sh | bash -s <host name>