cloud

Install Cert Manager on k8s cluster with nginx ingress

Install Cert Manager on k8s cluster with nginx ingress

Sam
Install cert-manager using helm chart Add jetstack repo # https://cert-manager.io/docs/installation/helm/ helm repo add jetstack https://charts.jetstack.io --force-update Install certmanager from jetstack repo helm install \ cert-manager jetstack/cert-manager \ --namespace cert-manager \ --create-namespace \ --version v1.15.0 \ --set crds.enabled=true # output: NAME: cert-manager LAST DEPLOYED: Sun Jun 16 20:29:49 2024 NAMESPACE: cert-manager STATUS: deployed REVISION: 1 TEST SUITE: None NOTES: cert-manager v1.15.0 has been deployed successfully! In order to begin issuing certificates, you will need to set up a ClusterIssuer or Issuer resource (for example, by creating a ‘letsencrypt-staging’ issuer).

AWS Basics

AWS Basics - How to install aws cli on your macOS

Sam
AWS EC2 Install aws cli via brew brew install awscli Install using package cat << EOF >> choices.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <array> <dict> <key>choiceAttribute</key> <string>customLocation</string> <key>attributeSetting</key> <string>/Users/yourusername</string> <key>choiceIdentifier</key> <string>default</string> </dict> </array> </plist> EOF Download the package curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg" Install the package using standard installer installer -pkg AWSCLIV2.pkg \ -target CurrentUserHomeDirectory \ -applyChoiceChangesXML choices.xml

Google Cloud Platform - App Engine Basics

Google Cloud Platform - App Engine Basics

Sam
Google Cloud App Engine Name Value Account Used am..info@gmail.com Date 1 June 2024 Samples URL https://github.com/GoogleCloudPlatform/golang-samples/tree/main/appengine/go11x Local clone dir workspace/p_github/GCP/golang-samples Samples Dir GCP/golang-samples/appengine/helloworld Install Google Cloud SDK on macOS using homebrew brew install --cask google-cloud-sdk ==> Caveats To add gcloud components to your PATH, add this to your profile: for bash users source "$(brew --prefix)/share/google-cloud-sdk/path.