I hereby claim:
- I am frimik on github.
- I am frimik (https://keybase.io/frimik) on keybase.
- I have a public key ASDV4EMGtVVLqWX4UEYlqjXfmgc8XSt6O0btr6gEULmNxQo
To claim this, I am signing this object:
#! /usr/bin/env ruby | |
submods = Hash.new | |
%x{git config -f .gitmodules --get-regexp '^submodule\..*\.(path|url)$'}.lines.each do |l| | |
submodule, key, value = l.match(/^submodule\.(.*)\.(path|url)\s+(.*)$/)[1..3] | |
submods[submodule] = Hash.new unless submods[submodule].is_a?(Hash) | |
submods[submodule][key] = value | |
end |
# Fact: racadm | |
# | |
# Purpose: Return the racadm information from Dell hardware | |
# | |
# Resolution: | |
# On Linux, queries racadm getconfig -g for each group in the query hash | |
# | |
# Author: Mikael Fridh <mfridh@marinsoftware.com> | |
# | |
# TODO Instead of sweeping output once per key, sweep once and |
Beginning Tiltfile execution | |
local: tk eval environments/default -e '_tilt' | |
→ { | |
→ "megaproxy": { | |
→ "port_forwards": [ | |
→ { | |
→ "link_path": "/haproxy/stats", | |
→ "name": "health", | |
→ "port": 8404 | |
→ } |
I hereby claim:
To claim this, I am signing this object:
# $XDG_CONFIG_HOME/k9s/plugin.yml | |
plugin: | |
# Annotate current object with a Flux ignore annotation | |
fluxdepignore: | |
# Define a mnemonic to invoke the plugin | |
shortCut: Shift-I | |
# What will be shown on the K9s menu | |
confirm: true | |
description: Flux Ignore |
.PHONY: vendor-cni | |
vendor-cni: | |
vendir sync | |
mkdir gitvendor/charts/linkerd2-cni/charts | |
mv gitvendor/charts/partials gitvendor/charts/linkerd2-cni/charts/partials | |
patch-cni: | |
patch -p0 <install-cni-delete-event.patch |
Going on and off VPN, things work, then they don't work... general annoying. Containers can't resolve... and when you might make containers resolve, then containers in containers (k3d) can't resolve...
It seems I got things working... I can go on and off VPN, name resolution works essentially the same on the Host as in Docker and the Kubernetes (k3d) nodes and the k3d kubernetes containers.
On the host I have per-interface DNS servers via systemd-resolved that takes care of it.
## Check if variable is defined | |
# Replaces has_variable?(var) and if @var variations. | |
# include?() pattern from @Jan_vStone. | |
# | |
# scope.lookupvar return values for undefined variables: | |
# Puppet 3.x: nil | |
# Puppet 2.6.x: :undefined | |
# Puppet 2.7.x: :undefined | |
<% if ! [:undefined, nil, ''].include?(masquerade_address = scope.lookupvar('ftp::masquerade_address')) -%> | |
MasqueradeAddress <%= masquerade_address %> |
#!/bin/bash | |
set -ex | |
if [ $# -ne 2 ]; then | |
echo "Usage: $0 EFS_ID_REGULAR EFS_ID_MAXIO" | |
exit 1 | |
fi | |
EFS_ID_REGULAR=$1 |
#!/bin/bash | |
CLUSTER_NAME="k3s-default" | |
# Install k3d | |
k3d --version || wget -q -O - https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash | |
# verify it | |
k3d check-tools | |
# create a volume and cluster |