Skip to content

Instantly share code, notes, and snippets.

View cehoffman's full-sized avatar

Chris Hoffman cehoffman

  • Flock Freight
  • Alabama
View GitHub Profile
2019-11-30T04:40:29.808896303Z level=info msg="Skipped reading configuration file" reason="Config File \"ciliumd\" Not Found in \"[/root]\"" subsys=daemon
2019-11-30T04:40:29.808979101Z level=info msg=" --access-log=''" subsys=daemon
2019-11-30T04:40:29.808988289Z level=info msg=" --agent-labels=''" subsys=daemon
2019-11-30T04:40:29.808994617Z level=info msg=" --allow-icmp-frag-needed='true'" subsys=daemon
2019-11-30T04:40:29.809000757Z level=info msg=" --allow-localhost='auto'" subsys=daemon
2019-11-30T04:40:29.809006715Z level=info msg=" --annotate-k8s-node='true'" subsys=daemon
2019-11-30T04:40:29.809012663Z level=info msg=" --auto-create-cilium-node-resource='true'" subsys=daemon
2019-11-30T04:40:29.809018658Z level=info msg=" --auto-direct-node-routes='false'" subsys=daemon
2019-11-30T04:40:29.809024775Z level=info msg=" --aws-instance-limit-mapping='map[]'" subsys=daemon
2019-11-30T04:40:29.809030621Z level=info msg=" --blacklist-conflicting-routes='true'" subsys=daemon
apiVersion: v1
items:
- apiVersion: navigator.jetstack.io/v1alpha1
kind: Pilot
metadata:
creationTimestamp: 2018-04-14T21:26:57Z
labels:
controller-revision-hash: es-logging-d-6f4d75769f
navigator.jetstack.io/elasticsearch-cluster-name: logging
navigator.jetstack.io/elasticsearch-node-pool-name: d
This file has been truncated, but you can view the full file.
W0410 09:17:10.471299 1 client_config.go:529] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work.
I0410 09:17:10.474541 1 options.go:145] Creating event broadcaster
I0410 09:17:10.474943 1 reflector.go:202] Starting reflector *v1alpha1.Pilot (30s) from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73
I0410 09:17:10.474977 1 reflector.go:240] Listing and watching *v1alpha1.Pilot from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73
I0410 09:17:10.475046 1 reflector.go:202] Starting reflector *v1alpha1.ElasticsearchCluster (30s) from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73
I0410 09:17:10.475077 1 reflector.go:240] Listing and watching *v1alpha1.ElasticsearchCluster from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73
I0410 09:17:10.574885 1 shared_informer.go:122] caches populated
I04

Keybase proof

I hereby claim:

  • I am cehoffman on github.
  • I am cehoffman (https://keybase.io/cehoffman) on keybase.
  • I have a public key whose fingerprint is 3400 914C 487C E6A7 F933 1DDB B093 32C1 01F3 E778

To claim this, I am signing this object:

@cehoffman
cehoffman / app.html
Last active April 23, 2016 12:41
computedFrom Set
<template>
<input type="checkbox" change.trigger="updateCheck('second', $event.srcElement.checked)">
<input type="checkbox" change.trigger="updateCheck('first', $event.srcElement.checked)">
<div>${anyChecked ? 'Some Checked' : 'None Checked'}</div>
</template>
@cehoffman
cehoffman / binutils-as-dwarf.patch
Last active August 29, 2015 13:56
binutils 2.24 avr patches
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c
index 332aa2d..729484b 100644
--- a/gas/config/tc-avr.c
+++ b/gas/config/tc-avr.c
@@ -1452,6 +1452,7 @@ md_assemble (char *str)
dwarf2_emit_insn (0);
+ dwarf2_emit_insn (0);
/* We used to set input_line_pointer to the result of get_operands,
@cehoffman
cehoffman / .gitignore
Created April 27, 2012 18:50
Program to remove an IP Address from SSHGuard's blacklist
build/
@cehoffman
cehoffman / colorize.c
Created August 7, 2011 00:04
ZSH STDERR Colorizing
/* $Id: colorize.c 3816 2004-07-03 17:01:32Z lefevre $
*
* Colorize the standard input. Written for zsh stderr coloring.
* This was taken from a mail archive on the subject of colorizing
* the stderr stream in zsh. It was written by Vincent Lefèvre as far
* as I know. It is here so it can be used in a brew formula.
*
* The intended usage is to place a line like the following in your zshrc
* exec 2>>(colorize `tput bold; tput setaf 1` `tput sgr0` > /dev/tty &)
*
Rake::TaskManager.class_eval do
def remove_task(*task_name)
[*task_name].each { |task| @tasks.delete(task.to_s) }
end
def rename_task(old_name, new_name)
old = @tasks.delete old_name.to_s
old.instance_variable_set :@name, new_name.to_s
@tasks[new_name.to_s] = old
end