Skip to content

Commit cf1821f

Browse files
chore: rebranding distribution to new name (#91)
* chore: rebranding distribution to new name * docs: put right image on readme * docs: refactor naming * Update README.md --------- Co-authored-by: Samuele Chiocca <[email protected]> Co-authored-by: Samuele Chiocca <[email protected]>
1 parent f605900 commit cf1821f

21 files changed

+78
-74
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you are opening a Draft PR, you can use the checklist to track the tests that
5757
have performed them.
5858
Example:
5959
60-
- [ ] Tested the change with KFD version X.Y.Z
60+
- [ ] Tested the change with SKD version X.Y.Z
6161
- [ ] Tested an upgrade from the previous version X
6262
-->
6363

README.md

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,35 @@
11
<!-- markdownlint-disable MD033 -->
2-
<h1>
3-
<img src="https://github.com/sighupio/fury-distribution/blob/main/docs/assets/fury-epta-white.png?raw=true" align="left" width="90" style="margin-right: 15px"/>
4-
Kubernetes Fury Networking
2+
<h1 align="center">
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/sighupio/distribution/refs/heads/main/docs/assets/white-logo.png">
5+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/sighupio/distribution/refs/heads/main/docs/assets/black-logo.png">
6+
<img alt="Shows a black logo in light color mode and a white one in dark color mode." src="https://raw.githubusercontent.com/sighupio/distribution/refs/heads/main/docs/assets/white-logo.png">
7+
</picture><br/>
8+
Networking Module
59
</h1>
610
<!-- markdownlint-enable MD033 -->
711

812
![Release](https://img.shields.io/badge/Latest%20Release-v2.1.0-blue)
9-
![License](https://img.shields.io/github/license/sighupio/fury-kubernetes-networking?label=License)
13+
![License](https://img.shields.io/github/license/sighupio/module-networking?label=License)
1014
![Slack](https://img.shields.io/badge/slack-@kubernetes/fury-yellow.svg?logo=slack&label=Slack)
1115

1216
<!-- <KFD-DOCS> -->
1317

14-
**Kubernetes Fury Networking** implements in-cluster networking functionality for the [Kubernetes Fury Distribution (KFD)][kfd-repo] via Container Network Interface (CNI) plugins.
18+
**Networking Module** implements in-cluster networking functionality for the [SIGHUP Distribution (SKD)][skd-repo] via Container Network Interface (CNI) plugins.
1519

16-
If you are new to KFD please refer to the [official documentation][kfd-docs] on how to get started with KFD.
20+
If you are new to SKD please refer to the [official documentation][skd-docs] on how to get started with SKD.
1721

1822
## Overview
1923

2024
Kubernetes has adopted the Container Network Interface (CNI) specification for managing network resources on a cluster.
2125

22-
**Kubernetes Fury Networking** makes use of CNCF recommended [Project Calico](https://www.projectcalico.org/), open-source networking and network security solution for containers, virtual machines, and bare-metal workloads, to bring networking features to the Kubernetes Fury Distribution.
26+
**Networking Module** makes use of CNCF recommended [Project Calico](https://www.projectcalico.org/), open-source networking and network security solution for containers, virtual machines, and bare-metal workloads, to bring networking features to the SIGHUP Distribution.
2327

2428
Calico deployment consists of a daemon set running on every node (including control-plane nodes) and a controller.
2529

2630
## Packages
2731

28-
Kubernetes Fury Networking provides the following packages:
32+
Networking Module provides the following packages:
2933

3034
| Package | Version | Description |
3135
| -------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -55,7 +59,7 @@ Check the [compatibility matrix][compatibility-matrix] for additional informatio
5559

5660
| Tool | Version | Description |
5761
| --------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
58-
| [furyctl][furyctl-repo] | `>=0.6.0` | The recommended tool to download and manage KFD modules and their packages. To learn more about `furyctl` read the [official documentation][furyctl-repo]. |
62+
| [furyctl][furyctl-repo] | `>=0.6.0` | The recommended tool to download and manage SKD modules and their packages. To learn more about `furyctl` read the [official documentation][furyctl-repo]. |
5963
| [kustomize][kustomize-repo] | `=3.5.3` | Packages are customized using `kustomize`. To learn how to create your customization layer with `kustomize`, please refer to their [repository][kustomize-repo]. |
6064

6165
### Deployment
@@ -130,11 +134,11 @@ The following set of alerts is included with the networking module:
130134
[calico-page]: https://github.com/projectcalico/calico
131135
[cilium-page]: https://github.com/cilium/cilium
132136
[tigera-page]: https://github.com/projectcalico/calico
133-
[kfd-repo]: https://github.com/sighupio/fury-distribution
137+
[skd-repo]: https://github.com/sighupio/distribution
134138
[furyctl-repo]: https://github.com/sighupio/furyctl
135139
[kustomize-repo]: https://github.com/kubernetes-sigs/kustomize
136-
[kfd-docs]: https://docs.kubernetesfury.com/docs/distribution/
137-
[compatibility-matrix]: https://github.com/sighupio/fury-kubernetes-networking/blob/master/docs/COMPATIBILITY_MATRIX.md
140+
[skd-docs]: https://docs.kubernetesfury.com/docs/distribution/
141+
[compatibility-matrix]: https://github.com/sighupio/module-networking/blob/master/docs/COMPATIBILITY_MATRIX.md
138142

139143
<!-- </KFD-DOCS> -->
140144

@@ -146,7 +150,7 @@ Before contributing, please read first the [Contributing Guidelines](docs/CONTRI
146150

147151
### Reporting Issues
148152

149-
In case you experience any problems with the module, please [open a new issue](https://github.com/sighupio/fury-kubernetes-networking/issues/new/choose).
153+
In case you experience any problems with the module, please [open a new issue](https://github.com/sighupio/module-networking/issues/new/choose).
150154

151155
## License
152156

docs/releases/v1.10.0.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Networking Core Module Release 1.10.0
22

3-
Welcome to the latest release of `Networking` module of [`Kubernetes Fury
4-
Distribution`](https://github.com/sighupio/fury-distribution) maintained by team
5-
SIGHUP.
3+
Welcome to the latest release of `Networking` module of [`SIGHUP
4+
Distribution`](https://github.com/sighupio/distribution) maintained by team
5+
SIGHUP by ReeVo.
66

77
This is a minor release that updates most components for compatibility with Kubernetes v1.24 and other improvements, and introduces the Tigera Operator.
88

@@ -37,4 +37,4 @@ kustomize build katalog/calico | kubectl apply -f-
3737
kusomize build katalog/ip-masq | kubectl apply -f-
3838
```
3939

40-
If you are upgrading from previous versions, please refer to the [`v1.9.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.9.0).
40+
If you are upgrading from previous versions, please refer to the [`v1.9.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.9.0).

docs/releases/v1.11.0.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.11.0
22

3-
Welcome to the latest release of `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This is a minor release that introduces improvements to the module's monitoring features.
66

@@ -10,7 +10,7 @@ This is a minor release that introduces improvements to the module's monitoring
1010
- Added alerts when Typha is seeing failures and errors.
1111
- Fixed a Typo in Typha's dashboard title.
1212

13-
See the full list of alerts and their description in the ["Monitoring" section of the Readme](https://github.com/sighupio/fury-kubernetes-networking/tree/v1.11.0#monitoring).
13+
See the full list of alerts and their description in the ["Monitoring" section of the Readme](https://github.com/sighupio/module-networking/tree/v1.11.0#monitoring).
1414

1515
## Component Images 🚢
1616

@@ -35,4 +35,4 @@ kustomize build katalog/calico | kubectl apply -f-
3535
kusomize build katalog/ip-masq | kubectl apply -f-
3636
```
3737

38-
If you are upgrading from previous versions, please refer to the [`v1.10.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.10.0).
38+
If you are upgrading from previous versions, please refer to the [`v1.10.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.10.0).

docs/releases/v1.12.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.12.0
22

3-
Welcome to the latest release of `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This is a minor release that updates most components for compatibility with Kubernetes v1.25.
66

@@ -27,4 +27,4 @@ kustomize build katalog/calico | kubectl apply -f-
2727
kusomize build katalog/ip-masq | kubectl apply -f-
2828
```
2929

30-
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.11.0).
30+
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.11.0).

docs/releases/v1.12.1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.12.1
22

3-
Welcome to the latest release of `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This is a patch release that fixes one issue with tigera eks-policy-only package.
66

@@ -16,7 +16,7 @@ This is a patch release that fixes one issue with tigera eks-policy-only package
1616
1717
## Bug Fixes and Changes 🐛
1818

19-
- [#55](https://github.com/sighupio/fury-kubernetes-networking/pull/55) change default registry from docker hub to registry.sighup.io.
19+
- [#55](https://github.com/sighupio/module-networking/pull/55) change default registry from docker hub to registry.sighup.io.
2020

2121
## Update Guide 🦮
2222

@@ -28,4 +28,4 @@ If you are upgrading from version `v1.12.0` to `v1.12.1` you need to download th
2828
kustomize build katalog/tigera/eks-policy-only | kubectl apply -f -
2929
```
3030

31-
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.11.0).
31+
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.11.0).

docs/releases/v1.12.2.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.12.2
22

3-
Welcome to the latest release of `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This is a patch release that fixes one issue with tigera eks-policy-only package and operator.
66

@@ -16,8 +16,8 @@ This is a patch release that fixes one issue with tigera eks-policy-only package
1616
1717
## Bug Fixes and Changes 🐛
1818

19-
- [#61](https://github.com/sighupio/fury-kubernetes-networking/pull/61) add trailing slash to tigera operator installation's .spec.registry
20-
- [#60](https://github.com/sighupio/fury-kubernetes-networking/pull/60) fix kustomization.yaml to patch the sighup registry correctly
19+
- [#61](https://github.com/sighupio/module-networking/pull/61) add trailing slash to tigera operator installation's .spec.registry
20+
- [#60](https://github.com/sighupio/module-networking/pull/60) fix kustomization.yaml to patch the sighup registry correctly
2121

2222
## Update Guide 🦮
2323

@@ -31,4 +31,4 @@ kustomize build katalog/tigera/eks-policy-only | kubectl apply -f -
3131
kustomize build katalog/tigera/on-prem | kubectl apply -f -
3232
```
3333

34-
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.11.0).
34+
If you are upgrading from previous versions, please refer to the [`v1.11.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.11.0).

docs/releases/v1.13.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.13.0
22

3-
Welcome to the latest release of the `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of the `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This is a minor release adding Cilium as a package! it also fixes the namespace where the Grafana dashboards are deployed and they get their own folder in Grafana's UI.
66

@@ -37,4 +37,4 @@ kustomize build katalog/calico | kubectl apply -f -
3737
kustomize build katalog/tigera/on-prem | kubectl apply -f -
3838
```
3939

40-
If you are upgrading from previous versions, please refer to the [`v1.12.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.12.0).
40+
If you are upgrading from previous versions, please refer to the [`v1.12.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.12.0).

docs/releases/v1.14.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.14.0
22

3-
Welcome to the latest release of the `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of the `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This minor release updates some components and adds support to Kubernetes 1.26.
66

@@ -29,4 +29,4 @@ kustomize build katalog/tigera/on-prem | kubectl apply -f -
2929
kustomize build katalog/cilium | kubectl apply -f -
3030
```
3131

32-
If you are upgrading from previous versions, please refer to the [`v1.13.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.13.0).
32+
If you are upgrading from previous versions, please refer to the [`v1.13.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.13.0).

docs/releases/v1.15.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.15.0
22

3-
Welcome to the latest release of the `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of the `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This minor release updates some components and adds support to Kubernetes 1.27.
66

@@ -61,4 +61,4 @@ kubectl delete -f cilium-preflight.yaml
6161
```
6262

6363

64-
If you are upgrading from previous versions, please refer to the [`v1.14.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.14.0).
64+
If you are upgrading from previous versions, please refer to the [`v1.14.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.14.0).

docs/releases/v1.16.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.16.0
22

3-
Welcome to the latest release of the `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of the `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This minor release updates some components and adds support to Kubernetes 1.28.
66

@@ -61,4 +61,4 @@ kubectl delete -f cilium-preflight.yaml
6161
```
6262

6363

64-
If you are upgrading from previous versions, please refer to the [`v1.15.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.15.0).
64+
If you are upgrading from previous versions, please refer to the [`v1.15.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.15.0).

docs/releases/v1.17.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Networking Core Module Release 1.17.0
22

3-
Welcome to the latest release of the `Networking` module of [`Kubernetes Fury Distribution`](https://github.com/sighupio/fury-distribution) maintained by team SIGHUP.
3+
Welcome to the latest release of the `Networking` module of [`SIGHUP Distribution`](https://github.com/sighupio/distribution) maintained by team SIGHUP by ReeVo.
44

55
This patch release updates some components and adds support to Kubernetes 1.29.
66

@@ -29,4 +29,4 @@ kustomize build katalog/tigera/on-prem | kubectl apply -f -
2929
kustomize build katalog/cilium | kubectl apply -f -
3030
```
3131

32-
If you are upgrading from previous versions, please refer to the [`v1.16.0` release notes](https://github.com/sighupio/fury-kubernetes-networking/releases/tag/v1.16.0).
32+
If you are upgrading from previous versions, please refer to the [`v1.16.0` release notes](https://github.com/sighupio/module-networking/releases/tag/v1.16.0).

docs/releases/v1.5.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Welcome to a new update of the Fury Networking core module.
44
This time, we add Kubernetes 1.20 tech-preview support while deprecating the support to Kubernetes 1.16.
5-
At the same time, Kubernetes 1.19 is officially supported by SIGHUP.
5+
At the same time, Kubernetes 1.19 is officially supported by SIGHUP by ReeVo.
66
This release includes a new package `ip-masq` which allows sending network packages to other pods/nodes using
77
the underlay host node IP. It could be useful in some scenarios.
88
The release also includes a minor upgrade of the Calico deployment, from 3.16 to 3.17.

docs/releases/v1.7.0.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Networking Core Module version 1.7.0
22

3-
`fury-kubernetes-networking` is part of the SIGHUP maintained [Kubernetes Fury Distribution](https://github.com/sighupio/fury-distribution). The module ships a networking stack to be deployed on the Kubernetes cluster based on Calico. Team SIGHUP makes it a priority to maintain these modules in compliance with CNCF and with all the latest features from upstream.
3+
`module-networking` is part of the SIGHUP maintained [SIGHUP Distribution](https://github.com/sighupio/distribution). The module ships a networking stack to be deployed on the Kubernetes cluster based on Calico. Team SIGHUP by ReeVo makes it a priority to maintain these modules in compliance with CNCF and with all the latest features from upstream.
44

5-
This release introduces the support for Kubernetes runtime `1.22` and drops support for `1.18`. Refer the [Compatibility Matrix](https://github.com/sighupio/fury-kubernetes-networking#compatibility) for more.
5+
This release introduces the support for Kubernetes runtime `1.22` and drops support for `1.18`. Refer the [Compatibility Matrix](https://github.com/sighupio/module-networking#compatibility) for more.
66

77
## Changelog
88

99
### Breaking Changes
1010
> None
1111
### Features
12-
- [#24](https://github.com/sighupio/fury-kubernetes-networking/pull/39) Supporting e2e test for 1.22.0 kubernetes
13-
- [#24](https://github.com/sighupio/fury-kubernetes-networking/pull/24) Upgrading Calico from v3.19.1 to [v3.19.2](https://github.com/projectcalico/calico/releases/tag/v3.19.2)
12+
- [#24](https://github.com/sighupio/module-networking/pull/39) Supporting e2e test for 1.22.0 kubernetes
13+
- [#24](https://github.com/sighupio/module-networking/pull/24) Upgrading Calico from v3.19.1 to [v3.19.2](https://github.com/projectcalico/calico/releases/tag/v3.19.2)
1414
### Bug Fixes
1515
> None
1616
### Security Fixes

0 commit comments

Comments
 (0)