I hereby claim:
- I am rphillips on github.
- I am rphillips (https://keybase.io/rphillips) on keybase.
- I have a public key ASBhyBooe3kbil9-5Ljzdu1xNhtVdnqZB2pkPvobt5Ygzwo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # Test script for Kueue installation and upgrade using Helm | |
| # This script validates that: | |
| # 1. Kueue v0.14.2 does NOT have 'app' label on Services | |
| # 2. After upgrading from local repo, Services DO have 'app' label | |
| set -euo pipefail | |
| # Colors for output |
| #version=F34 | |
| # URLs and REPOs | |
| url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-34&arch=x86_64" | |
| repo --name=fedora-updates --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f34&arch=x86_64" --cost=0 | |
| # RPMFusion Free | |
| repo --name=rpmfusion-free --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-34&arch=x86_64" --includepkgs=rpmfusion-free-release | |
| repo --name=rpmfusion-free-updates --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-updates-released-34&arch=x86_64" --cost=0 | |
| repo --name=rpmfusion-free-tainted --mirrorlist="https://mirrors.rpmfusion.org/metalink?repo=free-fedora-tainted-34&arch=x86_64" | |
| # RPMFusion NonFree |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| ## Script to mark nodes for termination on AWS | |
| ## usage: term-cluster.sh [filter on name] [region (default: us-east-1)] | |
| ## | |
| ## Dependencies: jq and awless | |
| ## | |
| set -eou pipefail |
| apiVersion: apps/v1 | |
| kind: DaemonSet | |
| metadata: | |
| name: kube-apiserver | |
| namespace: kube-system | |
| labels: | |
| tier: control-plane | |
| k8s-app: kube-apiserver | |
| spec: | |
| selector: |
| #!/bin/bash | |
| # Copyright © 2017 Google Inc. | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |
| package main | |
| import( | |
| "io/ioutil" | |
| "fmt" | |
| "net" | |
| "net/http" | |
| "log" | |
| ) |
| local bit = require('bit') | |
| local ffi = require('ffi') | |
| local S = require('syscall') | |
| ffi.cdef[[ | |
| int execl(const char *path, const char *arg0, ...); | |
| int login_tty(int fd); | |
| ]] | |
| local STDIN_FILENO = 0 |
| (defvar workgroups2-packages | |
| '( | |
| workgroups2 | |
| ) | |
| "List of all packages to install and/or initialize. Built-in packages | |
| which require an initialization must be listed explicitly in the list.") | |
| (defun workgroups2/init-workgroups2 () | |
| (use-package workgroups2 | |
| :init |
| package main | |
| import ( | |
| "errors" | |
| "io" | |
| "os" | |
| "os/user" | |
| "path" | |
| "strings" |