Merge "Validate that node hostname matches the kube node name before join"
This commit is contained in:
commit
6c38c840ea
@ -1,3 +1,8 @@
|
||||
if [ "$(hostname)" != "{{ config['Genesis:hostname'] }}" ]; then
|
||||
echo "The node hostname must match the Kubernetes node name" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
{% include "header.sh" with context %}
|
||||
|
||||
{% include "up.sh" with context %}
|
||||
|
@ -1,3 +1,8 @@
|
||||
if [ "$(hostname)" != "{{ config['KubernetesNode:hostname'] }}" ]; then
|
||||
echo "The node hostname must match the Kubernetes node name" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
{% include "header.sh" with context %}
|
||||
|
||||
{% include "up.sh" with context %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user