Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add calico for networking between control planes #14

Merged
merged 1 commit into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ exclude_paths:
- _static/
- .markdownlint-cli2.yaml
- .markdownlint.yaml
- roles/calico/files/calico.yaml
###
# ```{rubric} Kinds
# ```
Expand Down Expand Up @@ -131,6 +132,7 @@ profile: null
# :end-before: "###\n"
# ```
skip_list:
- args[module]
- command-instead-of-module
- command-instead-of-shell
- loop-var-prefix[missing]
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ jobs:
run: |
PIPENV_VENV_IN_PROJECT=1
export PIPENV_VENV_IN_PROJECT
sudo apt-get update
sudo apt-get -y install graphviz
.sphinx/bin/pipenv install
.sphinx/bin/pipenv install --dev
.sphinx/bin/pipenv install --categories docs
Expand Down
15 changes: 8 additions & 7 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ def get_version():
autoyaml_safe_loader = False
copyright = "2024, Xander Harris"
exclude_patterns = [
"_build",
"Thumbs.db",
'roles/join/files/join.md',
".DS_Store",
".pytest_cache/*",
".tox/*",
".venv/*",
'_build',
'Thumbs.db',
'roles/join/files/*',
'.DS_Store',
'.gnupg/*',
'.pytest_cache/*',
'.tox/*',
'.venv/*',
]
extensions = [
"myst_parser",
Expand Down
10 changes: 10 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ security
### Glossary

```{glossary}
Calico
Calico is a networking and security solution that enables Kubernetes
workloads and non-Kubernetes/legacy workloads to communicate seamlessly and
securely. More information is available
[here](https://docs.tigera.io/calico/latest/about/).

CNI
Container Network Interface used to manage networking between and inside
clusters.

HA
High Availability; in this context we mean specifically HA k8s clusters
as described
Expand Down
Loading