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
# Modified from https://gist.github.com/gauravkghildiyal/a3ed6aaf7010835b5e3d253c2472aef2 | |
# Changes: Use TCP health check, one service instead of two, and set grpc as default instead of only explicit routes. | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: grpc-app | |
name: grpc | |
spec: | |
replicas: 1 |
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
# Add GPU node pool with automatic driver installation. Manual drivers requred before 1.27 https://cloud.google.com/kubernetes-engine/docs/how-to/gpus#installing_drivers | |
# If you used the installation DaemonSet to manually install GPU drivers on or before January 25, 2023, you might need to re-apply the DaemonSet to get a version that ignores nodes that use automatic driver installation. | |
# COS based L4 via g2-standard-24 VMs https://cloud.google.com/compute/docs/accelerator-optimized-machines#g2-vms | |
gcloud beta container --project "gregbray-vpc" node-pools create "nvidia-l4-cos" --cluster "gke-iowa" --region "us-central1" \ | |
--machine-type "g2-standard-24" --accelerator type=nvidia-l4,count=2,gpu-driver-version=default \ | |
--image-type "COS_CONTAINERD" --disk-type "pd-balanced" --disk-size "100" \ | |
--num-nodes "1" --enable-autoscaling --min-nodes=1 --max-nodes=1 \ | |
--max-pods-per-node "110" --node-locations "us-central1-a" | |
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
$ echo "GET /" | openssl s_client -showcerts -servername www.linkedin.com -connect www.linkedin.com:443 | openssl x509 -noout -text | |
depth=2 C = US, O = DigiCert Inc, OU = www.digicert.com, CN = DigiCert Global Root G2 | |
verify return:1 | |
depth=1 C = US, O = Microsoft Corporation, CN = Microsoft Azure RSA TLS Issuing CA 04 | |
verify return:1 | |
depth=0 C = US, ST = WA, L = Redmond, O = Microsoft Corporation, CN = *.azureedge.net | |
verify return:1 | |
DONE | |
Certificate: | |
Data: |
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
# Create systemd unit | |
cat << EOF > /etc/systemd/system/theg2-ipv6-ula.service | |
[Unit] | |
Description=Add ipv6 static ULA | |
After=network-online.target | |
Requires=network-online.target | |
[Service] | |
Type=oneshot | |
ExecStart=/sbin/ip address add fd0b:dead:b0b1::123 dev wlan0 |
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
apiVersion: compute.cnrm.cloud.google.com/v1beta1 | |
kind: ComputeNetwork | |
metadata: | |
annotations: | |
cnrm.cloud.google.com/management-conflict-prevention-policy: "none" | |
cnrm.cloud.google.com/deletion-policy: "abandon" | |
name: default | |
spec: | |
description: Default network for the project | |
--- |
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
# from https://cloud.google.com/load-balancing/docs/network/udp-with-network-load-balancing | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: udp-echo | |
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: echo |
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
# https://github.com/processone/eturnal but probably better to use https://github.com/processone/eturnal/tree/master/examples/kubernetes-kustomize | |
# for testing use https://icetest.info/ should match results for stun:stun.l.google.com:19302 | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: eturnal | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: |
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
version: '3.7' | |
services: | |
homeassistant: | |
container_name: home-assistant | |
image: homeassistant/home-assistant:stable | |
ports: | |
- "8123" | |
volumes: | |
- /data/homeassistant:/config | |
- /data/ssl:/ssl |
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
#Flash 32bit os using rpi imager (with ssh and wifi settings) then login via ssh and configure device | |
ssh-import-id-gh gbrayut | |
sudo apt update | |
sudo apt install -y vim feh | |
sudo apt upgrade -y | |
# Copy pictures to rpi | |
scp -r /path/to/slideshow gbrayut@gbrpi3b:~/ | |
# Configure systemd user unit file |
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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: runtimedefault-pod | |
spec: | |
containers: | |
- name: test-container | |
image: r.j3ss.co/amicontained | |
command: ["/usr/bin/amicontained"] | |
securityContext: |
NewerOlder