These are some sensible defaults; a good place to start.
Located: "$HOME/Library/Application Support/Cursor/User/settings.json"
| ``` | |
| panic(cpu 0 caller 0xfffffe0024b36cf0): busy timeout[1], (60s): 'AppleAPFSMedia' (a,4020001) @IOService.cpp:5829 | |
| Debugger message: panic | |
| Memory ID: 0x6 | |
| OS release type: User | |
| OS version: 24G90 | |
| Kernel version: Darwin Kernel Version 24.6.0: Mon Jul 14 11:30:29 PDT 2025; root:xnu-11417.140.69~1/RELEASE_ARM64_T6000 | |
| Fileset Kernelcache UUID: 0843B4A77BE94220E9BFBC6024B71273 | |
| Kernel UUID: D013020A-F19B-3730-8283-F7E47107D27A | |
| Boot session UUID: 8B5D8AA0-0E37-4BF4-A2CA-0F2AFDBBAB59 |
| ~/.config/rsync/backups 2>&1 | tee /tmp/backups.log | |
| Running LIVE backup | |
| Backing up special files: | |
| + IFS=, | |
| + read -r program source_path | |
| + [[ -z # backup random files and follow the format; $HOME is assumed ]] | |
| + [[ # backup random files and follow the format; $HOME is assumed = \#* ]] | |
| + continue |
| .android* | |
| .appgatesdp* | |
| .atom/ | |
| # Include only .aws/{config,credentials}, exclude all else | |
| + /.aws/ | |
| - /.aws/cli | |
| - /.aws/sso | |
| .aws/sso/cache/ | |
| .bash_sessions/ | |
| .bun* |
| # print.func example output | |
| # REF: https://gist.github.com/todd-dsm/17560775b7e5e4d22339885eeb276784 | |
| % ./template.sh | |
| -------------------------------------------------------------------------------- | |
| Lets do some STUFF! | |
| -------------------------------------------------------------------------------- | |
| Do thing... |
| ######################################################################################################################## | |
| # EKS Addons | |
| # VER: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/releases | |
| # TFR: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons#usage | |
| # GHR: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/blob/99520ae0125df7b24163e14cf4eba2c96fcf14bd/docs/amazon-eks-addons.md#configuration-values | |
| ######################################################################################################################## | |
| module "eks_blueprints_addons" { | |
| source = "aws-ia/eks-blueprints-addons/aws" | |
| version = "~> 1.21.0" |
| ######################################################################################################################## | |
| # Modern Istio Gateway using Kubernetes Gateway API | |
| # Infrastructure (Deployment/Service) is automatically provisioned by Istio | |
| ######################################################################################################################## | |
| # https://istio.io/latest/docs/tasks/traffic-management/ingress/gateway-api/ | |
| # https://gateway-api.sigs.k8s.io/guides/ | |
| # https://istio.io/latest/docs/setup/additional-setup/gateway/#gateway-deployment-topologies | |
| ######################################################################################################################## | |
| # Gateway Class for Istio (defines the controller) | |
| resource "kubernetes_manifest" "istio_gateway_class" { |
| # Deploy the TEST app to the demo namespace | |
| # REF: https://bit.ly/3EKx0cT | |
| --- | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: demo | |
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment |
| # REF HCP: https://developer.hashicorp.com/vault/docs/platform/k8s/helm/configuration | |
| # REF VAL: https://github.com/hashicorp/vault-helm/blob/main/values.yaml | |
| # REF PLT: https://repo1.dso.mil/big-bang/product/packages/vault/-/blob/main/chart/values.yaml | |
| # --------------------------------------------------------------------------------------------------------- | |
| global: | |
| enabled: true | |
| namespace: "vault" | |
| tlsDisable: true # Default: true | |
| imagePullSecrets: | |
| - name: private-registry |