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

Remove Weave network plugin #181

Merged
merged 2 commits into from
Apr 6, 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
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