Description
In the worker nodes bootstrapping step, the following command is used:
sed "s|SUBNET|$SUBNET|g" \
configs/kubelet-config.yaml > kubelet-config.yaml
However, configs/kubelet-config.yaml does not contain any SUBNET
placeholder, making this sed substitution a no-op, the output file
is identical to the source template.
Expected behavior
Either:
- Remove the sed substitution and copy the file directly
- Or add the
SUBNET placeholder in the template if it was intentional
Description
In the worker nodes bootstrapping step, the following command is used:
However,
configs/kubelet-config.yamldoes not contain anySUBNETplaceholder, making this sed substitution a no-op, the output file
is identical to the source template.
Expected behavior
Either:
SUBNETplaceholder in the template if it was intentional