Skip to content

Instantly share code, notes, and snippets.

View mitshel's full-sized avatar

Shelepnev Dmitry mitshel

  • Gazprom transgaz Nizny Novgorod
View GitHub Profile
@patrickhuber
patrickhuber / install-kubernetes-1-6-on-centos-7-3.md
Last active July 18, 2021 12:24
install kubernetes 1.6 on centos 7.3

install kubernetes 1.6 on centos 7.3

Install kubelet, kubeadm, docker, kubectl and kubernetes-cni

1. Install Yum Repo

cat <<EOF > /etc/yum.repos.d/kubernetes.repo
[kubernetes]
name=Kubernetes
baseurl=http://yum.kubernetes.io/repos/kubernetes-el7-x86_64
@mitshel
mitshel / mtomb
Last active April 18, 2016 18:20
mediatomb console script for add or remove media-catalogs
#!/bin/bash
# Commands for MYSQL with mediatomb database
# create user 'mt'@'%' identified by 'mt';
# grant select on mediatomb.* to 'mt'@'%';
cmd=$1
catalog=$2
mediatomb_ip=192.168.7.10
mtombdb="mysql -h $mediatomb_ip mediatomb -umt -pmt"