Skip to content

Commit

Permalink
Remove Weave network plugin (#181)
Browse files Browse the repository at this point in the history
* pkg/models: Remove Weave from list of supported plugins

Signed-off-by: Din Music <din.music@din-cloud.com>

* docs: Remove network plugin Weave

Signed-off-by: Din Music <din.music@din-cloud.com>

---------

Signed-off-by: Din Music <din.music@din-cloud.com>
  • Loading branch information
MusicDin authored Apr 6, 2024
1 parent c45d60e commit 26ca67f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
11 changes: 5 additions & 6 deletions docs/user-guide/configuration/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ However, there are multiple supported network plugins available to choose from:
- `cilium`
- `flannel`
- `kube-router`
- `weave`

```yaml
kubernetes:
Expand All @@ -50,11 +49,11 @@ kubernetes:

The following table shows the compatibility matrix of supported network plugins and Kubernetes versions:

| Kubernetes Version | Calico | Cilium | Flannel | KubeRouter | Weave |
|--------------------|:----------------:|:----------------:|:----------------:|:----------------:|:----------------:|
| **1.25** | :material-check: | :material-check: | :material-check: | :material-check: | :material-check: |
| **1.26** | :material-check: | :material-check: | :material-check: | :material-check: | :material-check: |
| **1.27** | :material-check: | :material-check: | :material-check: | :material-check: | :material-check: |
| Kubernetes Version | Calico | Cilium | Flannel | KubeRouter |
|--------------------|:----------------:|:----------------:|:----------------:|:----------------:|
| **1.25** | :material-check: | :material-check: | :material-check: | :material-check: |
| **1.26** | :material-check: | :material-check: | :material-check: | :material-check: |
| **1.27** | :material-check: | :material-check: | :material-check: | :material-check: |

### Kubernetes DNS mode

Expand Down
1 change: 0 additions & 1 deletion docs/user-guide/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,6 @@ Each configuration property is documented with 5 columns: Property name, descrip
<li><code>cilium</code></li>
<li><code>flannel</code></li>
<li><code>kube-router</code></li>
<li><code>weave</code></li>
</ul>
</td>
</tr>
Expand Down
3 changes: 1 addition & 2 deletions pkg/models/config/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,11 @@ const (
CALICO NetworkPlugin = "calico"
CILIUM NetworkPlugin = "cilium"
FLANNEL NetworkPlugin = "flannel"
WEAVE NetworkPlugin = "weave"
KUBE_ROUTER NetworkPlugin = "kube-router"
)

func (p NetworkPlugin) Validate() error {
return v.Var(p, v.OneOf(CALICO, CILIUM, FLANNEL, WEAVE, KUBE_ROUTER))
return v.Var(p, v.OneOf(CALICO, CILIUM, FLANNEL, KUBE_ROUTER))
}

type Other struct {
Expand Down

0 comments on commit 26ca67f

Please sign in to comment.