Boot off Tails USB
Enable admin password
Unlock persistent storage
Boot off Tails USB
Enable admin password
Unlock persistent storage
| ❗ IMPORTANT: This gist is not actively maintained anymore. See https://github.com/cednore/ubuntu |
|---|
My personal environment setup guide on Ubuntu
| # Instant Pot Bubur Ayam (Chicken Coconut Congee) | |
| Adapted from: | |
| - Instant Pot Congee, [Budget Bytes](https://www.budgetbytes.com/instant-pot-congee-jook/) | |
| - Bubur Ayam, from *Coconut & Sambal*, Lara Lee | |
| - Nasi Uduk, from *Coconut & Sambal*, Lara Lee | |
| ## Ingredients | |
| ### Congee & Base | |
| - 1 cup jasmine rice | |
| - 1in ginger, peeled and thinly sliced |
| # Source: https://gist.github.com/a63a6970c46a2b08beb283a5b1f03b7c | |
| #################### | |
| # Create a Cluster # | |
| #################### | |
| # Install AWS IAM Authenticator: https://github.com/awsdocs/amazon-eks-user-guide/blob/master/doc_source/install-aws-iam-authenticator.md | |
| # Only if you did not yet clone that repository | |
| git clone \ |
Registering Rancher managed clusters in Argo CD doesn't work out of the box unless the Authorized Cluster Endpoint is used. Many users will prefer an integration of Argo CD via the central Rancher authentication proxy (which shares the network endpoint of the Rancher API/GUI). So let's find out why registering clusters via Rancher auth proxy fails and how to make it work.
Hint: If you are just looking for the solution scroll to the bottom of this page.
| # Use Visual Studio Code in Google Cloud Shell | |
| # As posted at: https://medium.com/google-cloud/how-to-run-visual-studio-code-in-google-cloud-shell-354d125d5748 | |
| # Export version variable | |
| export VERSION=`curl -s https://api.github.com/repos/cdr/code-server/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")'` | |
| # Download | |
| wget https://github.com/cdr/code-server/releases/download/$VERSION/code-server$VERSION-linux-x64.tar.gz | |
| # Unzip |
| #!/usr/bin/env bash | |
| rm -rf .git | |
| git init | |
| git add . | |
| git commit -m "Initial commit" | |
| git remote add origin <git origin url> | |
| git push -u --force origin <branch> |
| import json | |
| import logging | |
| from flask import Flask, g | |
| from flask_oidc import OpenIDConnect | |
| import requests | |
| logging.basicConfig(level=logging.DEBUG) | |
| app = Flask(__name__) |