$ kubectl get clusterrolebinding | grep admin-binding
provider-kubernetes-admin-binding ClusterRole/cluster-admin 64m
kcl-function-admin-binding ClusterRole/cluster-admin 58m
provider-helm-admin-binding ClusterRole/cluster-admin 58m
crossplane-admin-binding ClusterRole/cluster-admin 3m37s
$ kubectl apply -f xrd-claim.yaml -f function-kcl.yaml
$ kubectl apply -f resource.yaml
$ kubectl get composite
NAME SYNCED READY COMPOSITION AGE
This file contains 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
{ | |
"house": { | |
"detail": "The house is located on Suze Robertssonstraat 7", | |
"link": "https://www.google.com/maps/place/Suze+Robertsonstraat+7", | |
"color": "red: 255, green: 120, blue: 120, alpha: 255", | |
This file contains 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
{"menus": [{"shortcut": "Control+Space", "shortcutID": "kando_dynamic", "centered": true, "iconTheme": "material-symbols-rounded", "root": {"type": "submenu", "name": "Kubernetes", "icon": "deployed_code", "iconTheme": "material-symbols-rounded", "children": [{"type": "command", "data": {"command": "", "delayed": false}, "name": "eventing-controller-b974797d9-tts7k", "icon": "terminal", "iconTheme": "material-symbols-rounded"}, {"type": "command", "data": {"command": "", "delayed": false}, "name": "eventing-webhook-545c79cd88-qtf95", "icon": "terminal", "iconTheme": "material-symbols-rounded"}, {"type": "command", "data": {"command": "", "delayed": false}, "name": "imc-controller-686559bb47-5db9l", "icon": "terminal", "iconTheme": "material-symbols-rounded"}, {"type": "command", "data": {"command": "", "delayed": false}, "name": "imc-dispatcher-564778f4f-rcqgp", "icon": "terminal", "iconTheme": "material-symbols-rounded"}, {"type": "command", "data": {"command": "", "delayed": false}, "name": "jetstream-ch-co |
This file contains 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
> start | |
> ../../node_modules/.bin/ts-node --cwd ../../ ./examples/$npm_package_config_example_name/index.ts | |
public class TmuxPaneIoDocument { | |
@NotNull | |
@Size(min=1) | |
private String input; | |
@NotNull |
This file contains 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
class TmuxPaneIoDocument: | |
def __init__(self, input): | |
self._input = input.input | |
self._output = input.output | |
self._ps1 = input.ps1 | |
@property | |
def input(self): | |
return self._input | |
@input.setter |
This file contains 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
# Save this content to the file docker-compose.yml | |
# docker-compose pull | |
# docker-compose up | |
# tldr | |
# client1 ---. | |
# --- internet --- aws-host:8081 --- wstunnel reverse tunnel --- internet --- wstunnel --- websocket-application:8080 | |
# client2 ---` | |
version: '3' | |
This file contains 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 bash | |
# example usage | |
# echo "Task description" | ./this_script.sh | |
set -x | |
. ./.env | |
description="$(cat | jq -Rs '.')" | |
planning_column=`curl https://kanbanflow.com/api/v1/board?apiToken=${API_TOKEN} | jq -r '.columns[] | select(.name == "In progress") | .uniqueId'` | |
echo ${planning_column} |
This file contains 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
let inputs = import "./nickel.lock.ncl" in | |
let organist = inputs.organist in | |
let k8s_namespace = import "./k8s/namespace.yaml" in | |
let knative_memory_broker = import "./k8s/knative/eventing/broker-memory.ncl" in | |
let knative_memory_broker_configmap = import "./k8s/knative/eventing/configmap.yml" in | |
let users = import "./users.yaml" in | |
let teams = { | |
alpha = { | |
name = "Alpha" | |
} |
This file contains 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
direction: down | |
classes: { | |
laptop: { | |
style: { | |
stroke-width: 0 | |
fill: "#44C7B1" | |
shadow: true | |
border-radius: 5 | |
} |
This file contains 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
input { | |
file { | |
path => "/tmp/irssi_raw.log" | |
start_position => "end" | |
type => "irc" | |
tags => ["irc"] | |
} | |
http { | |
port => 31311 # default: 8080 | |
tags => ["http"] |
NewerOlder