Weave
Installation
To use the Weave, specify the following in the cluster spec.
The following command sets up a cluster using Weave.
kops create cluster \
--networking weave \
--yes \
--name myclustername.mydns.io
Configuring Weave MTU
The Weave MTU is configurable by editing the cluster and setting mtu
option in the weave configuration. AWS VPCs support jumbo frames, so on cluster creation kOps sets the weave MTU to 8912 bytes (9001 minus overhead).
spec:
weave:
netExtraArgs: "--log-level=info"
Note that it is possible to break the cluster networking if flags are improperly used and as such this option should be used with caution.
Configuring Weave NPC EXTRA_ARGS
Weave-npc (the Weave network policy controller) allows you to customize arguments of the running binary by setting the EXTRA_ARGS environmental variable. This can be used for debugging or for customizing the logging level of weave npc.
Note that it is possible to break the cluster networking if flags are improperly used and as such this option should be used with caution.
cat /dev/urandom | tr -dc A-Za-z0-9 | head -c9 > password
kops create secret weavepassword -f password
kops update cluster
Since unencrypted nodes will not be able to connect to nodes configured with encryption enabled, this configuration cannot be changed easily without downtime.
Override Weave image tag
Weave networking comes with default specs and version which are the recommended ones, already configured by kOps . In case users want to override Weave image tag, thus default version, specs should be customized as follows:
Weave networking comes with default specs related to CPU/Memory requests and limits, already configured by kOps. In case users want to override default values, specs should be customized as follows:
networking:
memoryRequest: 300Mi
cpuRequest: 100m
memoryLimit: 300Mi
cpuLimit: 100m
npcMemoryRequest: 300Mi
npcCPURequest: 100m
npcMemoryLimit: 300Mi