/opt/bin/etcdctl2
is a wrapper for etcdctl to add certs- copy the consul web-ui into
/DATA/infra/consul/ui
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
var config = require('./gulp/config.js'); | |
var commander = require('commander'); | |
var gulp = require('gulp'); | |
var runSequence = require('run-sequence'); | |
var gutil = require('./node_modules/gulp/node_modules/gulp-util/index.js'); | |
var del = require('del'); | |
var glob = require('glob'); | |
var open = require('open'); | |
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
var config = { | |
src: __dirname + '/../src/', | |
dist: __dirname + '/../dist/', | |
buildTasks: ['jshint', 'app', 'libs', 'copy', 'less'], | |
buildTasksProd: ['minify-app', 'minify-libs'], | |
_watchers: [] | |
}; | |
config.libs = [ | |
'bower_components/jquery/dist/jquery.js', |
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
gulp.task('build-stylesheets', function () { | |
return gulp.src('sources/stylesheets/tenside.less') | |
.pipe(plumber()) | |
.pipe(sourcemaps.init()) | |
.pipe(less({compress: true})) | |
.pipe(autoprefixer({ | |
browsers: ['last 2 versions'], | |
cascade: false | |
})) | |
.pipe(rename({suffix:'.min'})) |
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
<script> | |
(function($) { | |
$(document).ready(function() { | |
var fadeDuration = 500; | |
$('.hover-img').each(function(i, el) { | |
el = $(el); | |
if(el.css('position') != 'absolute') | |
el.css('position', 'relative'); |
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
// controllers/LoginController.js | |
module.exports = { | |
index: function(req, res) { | |
var email = req.param('email'); | |
var password = req.param('password'); | |
// delay everthing to prevent bruteforce, dos and timing attacks | |
setTimeout(function() { |
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
{ | |
"restartable": "rs", | |
"ignore": [ | |
"packages/*/angular/", | |
"packages/*/gulpsi.json" | |
], | |
"verbose": false, | |
"watch": [ | |
"packages/", | |
"server.js" |
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 | |
# watch events until infinity | |
UNTIL=99999999999 | |
# respect events 30sec in the past to not forget | |
# started containers AFTER "register running" but BEFORE event listener starts | |
SINCE=$(expr `date +%s` - 30) | |
DOMAIN=fubar |
- Setup SoftwareRAID for the CoreOS root partition without data-loss.
- Only for ext4!
- The Trick is to use the right volume label and fs-types :)
- We assume CoreOS is on
/dev/sdaX
and the second RAID Device is/dev/sdb
- Drawback: only
/
gets mirrored, Node goes down when sda fails
- Boot into any recovery system like Grml
- If not already done: install CoreOS
This little bash script helps you to build your own customized grml.iso
- Include your
.ssh/*.pub
files intoauthorized_keys
- Inject Grml Cheats
- Auto download all necessary files (the ISO and grml2usb)