Skip to content

Instantly share code, notes, and snippets.

View joejulian's full-sized avatar
🕶️
working without pants.

Joe Julian joejulian

🕶️
working without pants.
View GitHub Profile
EXPORT
{
# Export Id (mandatory, each EXPORT must have a unique Export_Id)
Export_Id = 1;
# Exported path (mandatory)
Path = /export;
# Pseudo Path (for NFS v4)
Pseudo = /;
# Access control options
Access_Type = RW;
-- cmake version 3.17
-- The C compiler identification is GNU 9.3.0
-- The CXX compiler identification is GNU 9.3.0
-- Check for working C compiler: /usr/sbin/cc
-- Check for working C compiler: /usr/sbin/cc - works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/sbin/c++
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.2.4
creationTimestamp: null
name: prometheuses.monitoring.coreos.com
spec:
additionalPrinterColumns:
- JSONPath: .spec.version
{"level":"info","msg":"Using TOML configuration file /config/traefik.toml","time":"2020-03-19T17:53:06Z"}
{"level":"info","msg":"No tls.defaultCertificate given for https: using the first item in tls.certificates as a fallback.","time":"2020-03-19T17:53:06Z"}
{"level":"info","msg":"Traefik version v1.7.20 built on 2019-12-10_05:02:10PM","time":"2020-03-19T17:53:06Z"}
{"level":"debug","msg":"Global configuration loaded {\"LifeCycle\":{\"RequestAcceptGraceTimeout\":0,\"GraceTimeOut\":10000000000},\"GraceTimeOut\":0,\"Debug\":true,\"CheckNewVersion\":true,\"SendAnonymousUsage\":false,\"AccessLogsFile\":\"\",\"AccessLog\":null,\"TraefikLogsFile\":\"\",\"TraefikLog\":{\"format\":\"json\"},\"Tracing\":null,\"LogLevel\":\"\",\"EntryPoints\":{\"http\":{\"Address\":\":80\",\"TLS\":null,\"Redirect\":null,\"Auth\":null,\"WhitelistSourceRange\":null,\"WhiteList\":null,\"Compress\":true,\"ProxyProtocol\":null,\"ForwardedHeaders\":{\"Insecure\":true,\"TrustedIPs\":null}},\"https\":{\"Address\":\":443\",\"TLS\":{\"MinVersio
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: test-ingress
annotations:
traefik.ingress.kubernetes.io/rewrite-target: /
ingress.kubernetes.io/protocol: https
spec:
rules:
- http:
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
name: addons.kubeaddons.mesosphere.io
spec:
additionalPrinterColumns:
- JSONPath: .status.ready
name: ready
@joejulian
joejulian / markdown.md
Created June 13, 2019 17:12
ordered list with code blocks

Ordered List with Code Blocks

This is an example of how to do ordered lists with code blocks and example of how not to do ordered lists with code blocks.

Correct Example

  1. This is an ordered list's first element.
  2. This is the second element and, despite starting with a 1, will be numbered 2.
# Specify the provider and access details
provider "aws" {
region = "${var.aws_region}"
}
data "aws_ami" "centos" {
owners = ["679593333241"]
most_recent = true
filter {
name = "name"
// ==UserScript==
// @name Jira Links in new tab
// @description Target _blank
// @match https://jira.mesosphere.com/*
// @grant none
// @version 1.0.1
// ==/UserScript==
function init() {
$("a")
@joejulian
joejulian / target_blank.js
Created December 6, 2018 21:26
Make Jira open links in a new tab.
// ==UserScript==
// @name Jira Links in new tab
// @description Target _blank
// @match https://jira.mesosphere.com/*
// @grant none
// @version 1.0.1
// ==/UserScript==
function init() {
$("a")