This file contains hidden or 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
| #!/usr/bin/python | |
| # www.jangaraj.com | |
| # Creating of submodules for https://github.com/zabbix/zabbix-community-repos | |
| import os | |
| import commands | |
| # format of file | |
| # https://github.com/jangaraj/Zabbix-Template-App-Zenoss Template App Zenoss (jangaraj) | |
| with open('repos.txt') as f: |
This file contains hidden or 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
| #!/bin/bash | |
| # Reporting nonzero RC executions to syslog | |
| # * * * * * root /usr/local/bin/errcron.sh <command> | |
| # Installation: wget -O /usr/local/bin/errcron.sh https://gist.githubusercontent.com/jangaraj/c4c9262fe04156a40b02/raw/580ab988f9ff28c01cc9ee729ac9f0fe175b3a80/errcron.sh | |
| OUT=$("$@" 2>&1) | |
| RESULT=$? | |
| if [ $RESULT -ne 0 ] | |
| then |
This file contains hidden or 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
| # dirty, not tested hack http://www.zenoss.org/forum/8806 | |
| # it will solve issue with Chrome, but question is what is broken after this hack? | |
| sed -i -e "s# request.setHeader('Content-type', mimetype)# if mimetype == 'image/png':\n mimetype = 'application/javascript'\n request.setHeader('Content-type', mimetype)#g" /opt/zenoss/Products/ZenRRD/zenrender.py | |
| # or edit /opt/zenoss/Products/ZenRRD/zenrender.py | |
| original: | |
| request.setHeader('Content-type', mimetype) | |
| edited: | |
| if mimetype == 'image/png': | |
| mimetype = 'application/javascript' |
This file contains hidden or 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
| kubectl config set-cluster default-cluster --server=https://master_ip --certificate-authority=ssl/ca.pem | |
| kubectl config set-credentials default-admin --certificate-authority=ssl/ca.pem --client-key=ssl/admin-key.pem --client-certificate=ssl/admin.pem | |
| kubectl config set-context default-system --cluster=default-cluster --user=default-admin | |
| kubectl config use-context default-system | |
| # obviously you need the CA used to bootstrap your cluster and all the certificates |
This file contains hidden or 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
| include kubernetes | |
| include kubernetes::master | |
| include kubernetes::node | |
| include kubernetes::node::kubelet | |
| include kubernetes::node::kube_proxy | |
| class { 'kubernetes::master::apiserver': | |
| service_cluster_ip_range => '10.0.0.0/24', | |
| admission_control => [ | |
| 'NamespaceLifecycle', | |
| 'NamespaceExists', |
This file contains hidden or 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
| mkdir /root/.ssh/ | |
| wget https://github.com/jangaraj.keys -O /root/.ssh/authorized_keys | |
| apt-get update | |
| apt-get install -y --force-yes gcc golang-go curl git wget make apt-transport-https python bridge-utils | |
| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" > /etc/apt/sources.list.d/docker.list | |
| apt-get update | |
| apt-get install -y --force-yes docker-engine | |
| docker pull golang:1.4 |
This file contains hidden or 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
| curl -k -s -X GET https://gcr.io/v2/google_containers/kube-apiserver/tags/list | jq -r '.tags[]' | |
| https://github.com/coreos/coreos-kubernetes/blob/meghanschofield-patch-1/multi-node/generic/controller-install.sh | |
| https://github.com/kubernetes/kubernetes/issues/19738 |
This file contains hidden or 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
| autocmd BufWritePre *.pp :s/\s\+$//e | |
| set tabstop=2 shiftwidth=2 | |
| set autoindent | |
| set expandtab | |
| set ruler | |
| filetype plugin on | |
| autocmd FileType python set tabstop=4 shiftwidth=4 |
This file contains hidden or 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
| #!/usr/bin/env python | |
| import json, requests | |
| debug = 0 | |
| ''' | |
| Examples: | |
| # time ./metais.py > /tmp/metais.stats | |
| real 16m57.925s | |
| user 6m4.204s |
This file contains hidden or 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
| BITS 32 | |
| org 0x05000000 | |
| db 0x7F, "ELF" | |
| dd 1 | |
| dd 0 | |
| dd $$ | |
| dw 2 | |
| dw 3 | |
| dd 0x0500001B |
OlderNewer