-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kubeadm cluster support to kne deploy (#504)
* add kubeadm cluster support to kne deploy * fix issues * add test skeleton * add tests * address feedback
- Loading branch information
Showing
5 changed files
with
472 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# kubeadm.yaml cluster config file sets up ingress, cni, and controllers in a new k8 cluster | ||
# created using kubeadm. The kubeadm cluster starts as a single node cluster but can be joined | ||
# from other hosts to create a multinode cluster. | ||
cluster: | ||
kind: Kubeadm | ||
spec: | ||
criSocket: unix:///var/run/cri-dockerd.sock | ||
podNetworkCIDR: 10.244.0.0/16 | ||
tokenTTL: 0 # no timeout | ||
podNetworkAddOnManifest: ../../manifests/flannel/manifest.yaml | ||
allowControlPlaneScheduling: true | ||
ingress: | ||
kind: MetalLB | ||
spec: | ||
manifest: ../../manifests/metallb/manifest.yaml | ||
ip_count: 200 | ||
cni: | ||
kind: Meshnet | ||
spec: | ||
manifest: ../../manifests/meshnet/grpc/manifest.yaml | ||
controllers: | ||
- kind: IxiaTG | ||
spec: | ||
operator: ../../manifests/keysight/ixiatg-operator.yaml | ||
configMap: ../../manifests/keysight/ixiatg-configmap.yaml | ||
- kind: SRLinux | ||
spec: | ||
operator: ../../manifests/controllers/srlinux/manifest.yaml | ||
- kind: CEOSLab | ||
spec: | ||
operator: ../../manifests/controllers/ceoslab/manifest.yaml | ||
- kind: Lemming | ||
spec: | ||
operator: ../../manifests/controllers/lemming/manifest.yaml |
Oops, something went wrong.