From 40f5ca5212f0fc59f5d542297df2dc1df7fdd08d Mon Sep 17 00:00:00 2001 From: Cory Latschkowski Date: Tue, 25 Jun 2024 00:01:37 -0600 Subject: [PATCH] fix: lint --- .wordlist-sh | 8 ++++++++ docs/OTHER.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/.wordlist-sh b/.wordlist-sh index 71940a70..45e59be8 100644 --- a/.wordlist-sh +++ b/.wordlist-sh @@ -28,6 +28,7 @@ basename bashrc BASHRC bB +blockDevices busybox bz bzcat @@ -54,6 +55,7 @@ dcgm defaultCertificate defaultChannel deployables +deviceName df dirname DIRS @@ -65,6 +67,7 @@ dnf dockerfiles dport dryrun +ebs ecr eE eee @@ -110,6 +113,7 @@ installModes installPlanApproval InstanceId instanceType +iops iptables journalctl Jx @@ -121,6 +125,7 @@ klusterlet KLUSTERLET klusterletaddonconfigs klusterlets +kmsKey krew KREW ksh @@ -268,7 +273,9 @@ VELERO venv virtctl vmSize +volumeSize volumeSnapshot +volumeType vwc vzx WantedBy @@ -279,6 +286,7 @@ wo wordlist xargs xlarge +xvdb xz yamllint yml diff --git a/docs/OTHER.md b/docs/OTHER.md index 00dbd8ff..c9bada8f 100644 --- a/docs/OTHER.md +++ b/docs/OTHER.md @@ -8,3 +8,31 @@ ## SOPS https://github.com/getsops/sops + +## AWS Machine Set storage + +Patch `MachineSet` to add secondary storage + +```sh +spec: + template: + spec: + providerSpec: + value: + blockDevices: + - ebs: + encrypted: true + iops: 0 + kmsKey: + arn: '' + volumeSize: 100 + volumeType: gp3 + - deviceName: /dev/xvdb + ebs: + encrypted: true + iops: 0 + kmsKey: + arn: '' + volumeSize: 1000 + volumeType: gp3 +```