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
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
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
REPOS=['api-test','api-new-test'] | |
for (repo in REPOS) { | |
repoName = "${repo} PROD" | |
repoSshUrl = "[email protected]:blah/${repo}.git" | |
// Create the job | |
job { | |
name "${repoName}" | |
scm { |
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
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
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
- name: Build ELB | |
local_action: | |
module: ec2_elb_lb | |
name: "{{ elb_name }}" | |
subnets: "{{ subnets }}" |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTekueS0zH+dgkvBzyWWEzgB/6WotNtHNBb1TE4RmyJNUS5aS0pEh8R1eW89nX45i8Br0N+Rjl3VjiErqbJRX+X+nUTlSiVmyRoyc/2DC6aPcQ8Nyg34e3ElRkgfuMU5mCmKVFQSbPj0yhbNzrnDTZHEKLQlryp+B6ePF33OAM25xsnzrre2bDlJQzo6OkrOglqZSpupTJFpIzulmlpksB+aTB1bbIEqskNYbQIwSjQuLJ7Xy1192/qzxmmJQJjmeCJT/FdGY2G1tWhyAdAhMrFnNlf5nUZExiWtzDVfH5+OnUz7x22az+eMe5qKPhsE08M/U/UGJYBb1LGfGX3tdB george@george-XPS-13-9350 |
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
ALERT ELB_errors | |
IF sum(aws_elb_httpcode_elb_5_xx_sum) by (load_balancer_name) > 0 | |
FOR 3m | |
LABELS { severity = "critical" } | |
ANNOTATIONS { | |
summary = "ELB {{$labels.load_balancer_name}} is returning 5xx errors", | |
description = "{{$labels.load_balancer_name}} of job {{$labels.job}} is erroring.", |
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
render(): React.Element { | |
return ( | |
<div className="span8 rightcontent"> | |
<div className="row"> | |
{ this.props.contents.length > 0 ? | |
this.props.contents.forEach((content) => { | |
<ContentsPendingItem {...content} /> |
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
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.665766252s) from=172.17.42.1:43574 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.878339625s) from=172.17.42.1:43734 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.665891733s) from=172.17.42.1:42686 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.878491804s) from=172.17.42.1:42966 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.666010429s) from=172.17.42.1:43112 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.878547846s) from=172.17.42.1:43735 | |
2016/03/04 23:35:19 [DEBUG] http: Request GET /v1/health/service/uploader?index=2154766&stale=&wait=60000ms (1.666024295s) from=172.17.42.1:43576 | |
20 |
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
https://fandango.mingle.thoughtworks.com/projects/all/cards/grid?aggregate_property[column]=story+points&aggregate_type[column]=sum&color_by=scheduled+for&favorite_id=9701&filters[]=[Type][is][Story]&filters[]=[Type][is][Defect]&filters[]=[Sprint][is][12]&filters[]=[Squad][is][MrRobot]&group_by[lane]=card+status&lanes=Blocked%2CSprint+Backlog%2CIn+Development%2CDone%2CCode+Review&tab=All |
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
http://backstage-dev-grafana-699652618.us-west-2.elb.amazonaws.com/dashboard/db/overview |