scoop install rustup
scoop install llvm
scoop install gcc
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
#!/bin/bash | |
for nsfull in $(kubectl get ns -o name | grep -v -E "kube.*"); do | |
ns=$(echo $nsfull | cut -d "/" -f 2) | |
deploy="" | |
echo "# Running $ns" | |
for deploy in $(kubectl get deploy -o name | grep -E ".*"); do | |
if [[ "$deploy" == "" ]]; then | |
continue | |
fi | |
kubectl rollout restart $deploy -n $ns |
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
# ./aws/versions.tf | |
terraform { | |
required_providers { | |
aws = { | |
version = "= 5.55.0" | |
source = "hashicorp/aws" | |
} | |
} | |
required_version = "~> 1.8.0" # use latest 1.8.x | |
# required_version = "= 1.8.4" # use 1.8.4 |
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
{ | |
"affinity": { | |
"nodeAffinity": { | |
"requiredDuringSchedulingIgnoredDuringExecution": { | |
"nodeSelectorTerms": [ | |
{ | |
"matchExpressions": [ | |
{ | |
"key": "karpenter.sh/nodepool", | |
"operator": "DoesNotExist" |
- Prepare profile in
~/.aws/credentials
. - Change
from_profile
andto_profile
to your profile name, then Run command.
from_profile=profile-A to_profile=profile-B sts=$(aws sts assume-role --profile "${from_profile}" --role-arn $(aws configure get "${to_profile}.role_arn") --role-session-name "${to_profile}-assume"); \
export AWS_ACCESS_KEY_ID=$(echo "${sts}" | jq -r '.Credentials.AccessKeyId'); \
export AWS_SECRET_ACCESS_KEY=$(echo "${sts}" | jq -r '.Credentials.SecretAccessKey'); \
export AWS_SESSION_TOKEN=$(echo "${sts}" | jq -r '.Credentials.SessionToken') \
export AWS_EXPIRE=$(echo "${sts}" | jq -r '.Credentials.Expiration')
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
#!/bin/bash | |
set -e | |
extension="txt" | |
result=$(find . -type f -name "*.${extension}" | cut -d / -f 2 | sort -u) | |
if [[ -n "$result" ]]; then | |
while read -r item; do | |
echo "$PWD/$item" | |
done <<< "$result" |
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
$reservedMemoryMB = Get-Content -Raw -Path "${env:APPDATA}/Docker/settings.json" | ConvertFrom-Json | Select-Object -ExpandProperty memoryMiB | |
$dockerStats = docker stats --no-stream --format "{{.MemUsage}}" | |
$totalMemoryKB = 0 | |
foreach ($line in $dockerStats) { | |
$memoryUsage = $line.Split('/')[0].Trim() | |
$value = [double]($memoryUsage -replace '[^\d.]') | |
if ($memoryUsage -match "GiB") { | |
$totalMemoryKB += $value * 1024 * 1024 | |
} elseif ($memoryUsage -match "MiB") { |
http://127.0.0.1:2375/info response for Docker Engine backend with Hyper-V or WSL2.
Windows 11 Pro 22H2
$ wsl --version
メトリクス
flowchart LR
subgraph ContainerA
Application["App"]
end
subgraph ContainerB
DatadogAgent["ddagent"]
end