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 | |
# | |
# Fetches the root public key used to sign an image in Notary, e.g. to configure Connaisseur. | |
# | |
# E.g.: | |
# ./fetch-root-key.sh https://notary.docker.io docker.io/securesystemsengineering/connaisseur | |
NOTARY=${1:-https://notary.docker.io} | |
IMAGE=${2:-docker.io/library/alpine} | |
TMP=$(mktemp -d) |
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
--- | |
# Deploy and `kubectl exec` | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: consul-connect-injector-webhook-debug-deployment | |
namespace: consul | |
labels: | |
app: consul | |
spec: |
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
@-moz-document regexp(".*freedesktop\\.org\\/software\\/.*\\/man\\/.*") { | |
body { | |
font-family: Arial, Helvetica; | |
} | |
.refentry { | |
max-width: 960px; | |
margin: 1em auto; |
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
FROM golang:1 as builder | |
COPY . /src | |
WORKDIR /src | |
RUN go build -o /src/test | |
RUN /src/test |
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 | |
# | |
# Add a label to an image tarball (manifest v1). | |
# | |
# $ docker save alpine -o alpine.tar | |
# $ add-label alpine.tar org.mine.key foobar | |
# $ docker load -i alpine.tar | |
# $ docker inspect alpine | jq '.[].Config.Labels' | |
# { | |
# "org.mine.key": "foobar" |
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 | |
# | |
# rewrite-docker-tar ./image.tar ./output.tar | |
# | |
# Exporting 'docker' tarballs with buildctl is creating manifests with no file | |
# extensions (no .json or .tar.gz on the config or layers). This works with | |
# dockerd because it never looks at the extensions just tries various things with | |
# safe fallbacks. Other tooling relies on extensions and checks for | |
# .json, .tar, and .tar.gz. | |
# |
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
hotkeys: | |
profile: {} | |
shell: {} | |
toggle-window: | |
- - Ctrl-` | |
ssh: {} | |
terminal: | |
bell: visual | |
colorScheme: | |
name: Tomorrow Night |
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 groovy | |
// Specify default values but allow overriding. | |
// | |
// dosomething { | |
// arg1 = true | |
// arg2 = false | |
// arg3 = "https://www.hotbot.com" | |
// } |
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
plugins { | |
id 'org.jenkins-ci.jpi' version '0.22.0' | |
id 'groovy' | |
id 'java' | |
id 'idea' | |
} | |
build.dependsOn jpi |
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: "unifi | configure service db.mongo.local" | |
lineinfile: | |
dest: "/usr/lib/unifi/data/system.properties" | |
regexp: '^db\.mongo\.local=' | |
line: "db.mongo.local={{ unifi_db_mongo_local }}" | |
insertbefore: BOF |
NewerOlder