Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Base PullRequest
default branch (https://github.com/electrocucaracha/k8s-NetworkingDeepDive-demo/tree/master)
Command results
Details:
add path
sudo apt-get update
Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B] Hit:2 http://azure.archive.ubuntu.com/ubuntu noble InRelease Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu noble-security InRelease [126 kB] Hit:6 https://packages.microsoft.com/repos/azure-cli noble InRelease Get:7 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B] Get:8 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [701 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [162 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [132 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [726 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe Translation-en [216 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Components [310 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [537 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted Translation-en [104 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Components [212 B] Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Components [940 B] Get:18 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 Components [208 B] Get:19 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Components [11.7 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu noble-backports/restricted amd64 Components [216 B] Get:21 http://azure.archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Components [212 B] Get:22 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Packages [501 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu noble-security/main Translation-en [102 kB] Get:24 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Components [7232 B] Get:25 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Packages [564 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu noble-security/universe Translation-en [150 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Components [51.9 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [482 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted Translation-en [93.1 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Components [212 B] Get:31 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 Components [212 B] Fetched 5234 kB in 1s (7052 kB/s) Reading package lists...
sudo apt-get -y --no-install-recommends install aspell aspell-en
stderr:
pip install pyspelling
sort --ignore-case --output=original.dic .github/.wordlist.txt
echo "" > .github/.wordlist.txt
# Remove leftovers
pyspelling -c .spellcheck.yml | sed '/^<.*>/d;/^!!!/d;/^--/d;/^Misspelled words:/d;/^$/d;/^Spelling check passed :)$/d' | sort --ignore-case | uniq --ignore-case | tee draft.dic
comm -12 --nocheck-order draft.dic original.dic > .github/.wordlist.txt
sort --ignore-case --output=.github/.wordlist.txt .github/.wordlist.txt
# Add missing words
pyspelling -c .spellcheck.yml | sed '/^<.*>/d;/^!!!/d;/^--/d;/^Misspelled words:/d;/^$/d;/^Spelling check passed :)$/d' | sort --ignore-case | uniq --ignore-case | tee --append .github/.wordlist.txt
sort --ignore-case --output=.github/.wordlist.txt .github/.wordlist.txt
Changed files
Changed file:
Repo | 📝 Issues | 🏬 Marketplace