I hereby claim:
- I am knrt10 on github.
- I am knrt10 (https://keybase.io/knrt10) on keybase.
- I have a public key ASAHi6FCWOb3nyEqnbr9XG_KgXNFd8aoCsOTKDZL-RzBBgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# The env variable RANGE specifies the range of commits to be searched for the changelog. | |
# If unset the latest tag until origin/main will be set. | |
# | |
# The env variable GITHUB_TOKEN can specify a GitHub personal access token. | |
# Otherwise, one could run into GitHub rate limits. Go to | |
# https://github.com/settings/tokens to generate a token. | |
set -e |
#!/bin/bash | |
set -euo pipefail | |
set -x | |
export RESOURCE_GROUP=headlamp-stateless | |
export LOCATION="EAST US" | |
export CLUSTER_NAME="headlamp" | |
export SSH_KEY=~/.ssh/headlamp.pub |
#!/bin/bash | |
set -euo pipefail | |
set -x | |
# Clone headlamp repository from github | |
git clone https://github.com/headlamp-k8s/headlamp.git --depth=1 && cd headlamp | |
echo ' | |
version: "3" |
#!/bin/bash | |
set -euo pipefail | |
set -x | |
export VM_NAME=stateless | |
export RESOURCE_GROUP=headlamp-stateless | |
export LOCATION="EAST US" | |
export IMAGE="Ubuntu2204" | |
export VM_SIZE=Standard_D8as_v5 |
#!/bin/bash | |
set -euo pipefail | |
set -x | |
# Source: https://docs.docker.com/engine/install/ubuntu/ | |
apt-get update | |
apt-get -y remove docker docker-engine docker.io containerd runc || true | |
apt-get install -y \ |
#!/bin/bash | |
set -eu | |
conf_zip="" | |
if [ -f kv0.zip ] ; then | |
conf_zip="kv0.zip" | |
fi | |
if [ -f kv1.zip ] ; then | |
conf_zip="kv1.zip" |
#!/usr/bin/env bash | |
helm create santosh-test-helm | |
cd santosh-test-helm/ | |
rm -rf templates charts | |
mkdir templates/ |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: github-action-runner | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: github-action-runner | |
strategy: {} |
#!/bin/bash | |
set -euo pipefail | |
set -x | |
# Source: https://docs.docker.com/engine/install/debian | |
apt-get update | |
apt-get -y remove docker docker-engine docker.io containerd runc || true | |
apt-get -y install \ |