Status: (Final)
Authors: mmukhi@google.com
Reviewers: dfawley@, menghanl@, yuxuanli@, psrini@
Last Updated: 2018-02-25
# Dockerfile to run the cron jobs in root, including python/psycopg2 | |
FROM alpine:edge | |
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing py-psycopg2 | |
EXPOSE 6000 | |
COPY refresh.py /refresh.py | |
COPY root /var/spool/cron/crontabs/root | |
CMD crond -l 2 -f |
(() => { | |
const log = new Proxy({}, { | |
get: (_, color) => (...args) => console.log(`%c ${args.join(' ')}`, `color: ${color}`) | |
}); | |
log.tomato('I am tomato') | |
log.chocolate('I am chocolate') | |
log.cornflowerblue('I am cornflowerblue') | |
log.darkcyan('I am darkcyan') |
{ | |
"editor.fontFamily": "FiraCode-Light, OperatorMono-Light, Menlo, Monaco, monospace", | |
// Controls the font size in pixels. | |
"editor.fontSize": 15, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.lineHeight": 28, | |
// "window.zoomLevel": 0.25, |
{ | |
"index" : "82656-2018-04-11-br-11-vic.avro", | |
"shard" : 1, | |
"primary" : false, | |
"current_state" : "unassigned", | |
"unassigned_info" : { | |
"reason" : "REPLICA_ADDED", | |
"at" : "2018-06-06T06:48:10.483Z", | |
"last_allocation_status" : "no_attempt" | |
}, |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"strconv" | |
) | |
func selectionHelper(runners string, chosen string) { | |
if runners == "" { |
package client | |
import ( | |
"bytes" | |
"context" | |
"encoding/json" | |
"encoding/xml" | |
"fmt" | |
"github.com/telematicsct/gatekeeper/pkg/log" | |
"go.uber.org/zap" |
func keepRunning(timeout int, action func(), cancel <-chan os.Signal) { | |
ticker := time.NewTicker(500 * time.Millisecond) | |
for { | |
select { | |
case <-cancel: | |
fmt.Printf("exiting. timed out\n") | |
ticker.Stop() | |
return | |
case <-ticker.C: | |
action() |
version: "3" | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.3.1 | |
networks: | |
- elastic-jaeger | |
ports: | |
- "127.0.0.1:9200:9200" | |
- "127.0.0.1:9300:9300" |
Status: (Final)
Authors: mmukhi@google.com
Reviewers: dfawley@, menghanl@, yuxuanli@, psrini@
Last Updated: 2018-02-25
service.beta.kubernetes.io/aws-load-balancer-access-log-emit-interval
(in minutes)service.beta.kubernetes.io/aws-load-balancer-access-log-enabled
(true|false)service.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-name
service.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-prefix
service.beta.kubernetes.io/aws-load-balancer-additional-resource-tags
(comma-separated list of key=value)service.beta.kubernetes.io/aws-load-balancer-backend-protocol
(http|https|ssl|tcp)service.beta.kubernetes.io/aws-load-balancer-connection-draining-enabled
(true|false)