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
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: ingressroutes.traefik.containo.us | |
spec: | |
group: traefik.containo.us | |
version: v1alpha1 | |
names: | |
kind: IngressRoute | |
plural: ingressroutes |
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
apiVersion: traefik.containo.us/v1alpha1 | |
kind: Middleware | |
metadata: | |
name: httpbin-traffic | |
spec: | |
rateLimit: | |
burst: 1 | |
average: 2 | |
--- | |
apiVersion: traefik.containo.us/v1alpha1 |
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
apiVersion: v1 | |
data: | |
devnull.conf: CjxsYWJlbCBARVJST1I+CjxtYXRjaCAqKj4KICAgIEB0eXBlIG51bGwKICAgIEBpZCBtYWluLWZsdWVudGQtZXJyb3IKPC9tYXRjaD4KPC9sYWJlbD4KCjxtYXRjaCAqKj4KICAgIEB0eXBlIG51bGwKICAgIEBpZCBtYWluLW5vLW91dHB1dAo8L21hdGNoPgo= | |
fluent.conf: CiMgaW5jbHVkZSBvdGhlciBjb25maWcgZmlsZXMKQGluY2x1ZGUgL2ZsdWVudGQvZXRjL2lucHV0LmNvbmYKQGluY2x1ZGUgL2ZsdWVudGQvYXBwLWNvbmZpZy8qCkBpbmNsdWRlIC9mbHVlbnRkL2V0Yy9kZXZudWxsLmNvbmYKQGluY2x1ZGUgL2ZsdWVudGQvZXRjL2ZsdWVudGxvZy5jb25mCg== | |
fluentlog.conf: CjxsYWJlbCBARkxVRU5UX0xPRz4KICA8bWF0Y2ggZmx1ZW50Lio+CiAgICBAdHlwZSBudWxsCiAgICBAaWQgbWFpbi1mbHVlbnRkLWxvZwogIDwvbWF0Y2g+CjwvbGFiZWw+Cg== | |
input.conf: CiMgRW5hYmxlIFJQQyBlbmRwb2ludCAodGhpcyBhbGxvd3MgdG8gdHJpZ2dlciBjb25maWcgcmVsb2FkIHdpdGhvdXQgcmVzdGFydCkKPHN5c3RlbT4KICBycGNfZW5kcG9pbnQgMTI3LjAuMC4xOjI0NDQ0CiAgbG9nX2xldmVsIGluZm8KPC9zeXN0ZW0+CgojIFByb21ldGhldXMgbW9uaXRvcmluZwoK | |
kind: Secret | |
metadata: | |
annotations: | |
banzaicloud.com/last-applied: '{"data":{"devnull.conf":"CjxsYWJlbCBARVJST1I+CjxtYXRjaCAqKj4KICAgIEB0eXBlIG51bG |
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
apiVersion: v1 | |
kind: Secret | |
metadata: | |
annotations: | |
banzaicloud.com/last-applied: '{"metadata":{"name":"empty-logging-fluentd-output","namespace":"logging"}}' | |
creationTimestamp: "2020-03-11T09:35:41Z" | |
name: empty-logging-fluentd-output | |
namespace: logging | |
resourceVersion: "3476" | |
selfLink: /api/v1/namespaces/logging/secrets/empty-logging-fluentd-output |
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/sh | |
set -e | |
mkdir -p tmp | |
cd tmp | |
USER=$1 | |
openssl genrsa -out "${USER}.key" 4096 | |
cat > csr.cnf << EOF | |
[req] | |
default_bits=2048 |
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
# Copied from https://gist.github.com/pantsel/73d949774bd8e917bfd3d9745d71febf | |
version: "3" | |
networks: | |
kong-net: | |
driver: bridge | |
services: | |
####################################### |
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 python3 | |
import argparse | |
import urllib.request | |
import logging | |
import hashlib | |
import yaml | |
PLATFORMS = [ | |
("arm64", "linux"), |
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
apiVersion: argoproj.io/v1alpha1 | |
kind: Workflow | |
metadata: | |
generateName: oh-my-ecs- | |
spec: | |
serviceAccountName: argo | |
entrypoint: print-ecs | |
arguments: | |
parameters: |
OlderNewer