Skip to content
Snippets Groups Projects
Commit 3eef8dc8 authored by Tatsuyuki Ishi's avatar Tatsuyuki Ishi
Browse files

Add bad hostname preflight check

Hostname must be a valid DNS name, which is checked as https://github.com/kubernetes/apimachinery/blob/master/pkg/util/validation/validation.go#L115

The situation I have encountered is that my hostname contained underscore which is disallowed and apiserver refused to start.
parent 3663061b
No related branches found
No related tags found
No related merge requests found
...@@ -103,3 +103,9 @@ ...@@ -103,3 +103,9 @@
that: ansible_kernel.split('-')[0]|version_compare('4.8', '>=') that: ansible_kernel.split('-')[0]|version_compare('4.8', '>=')
when: kube_network_plugin == 'cilium' when: kube_network_plugin == 'cilium'
ignore_errors: "{{ ignore_assert_errors }}" ignore_errors: "{{ ignore_assert_errors }}"
- name: Stop if bad hostname
assert:
that: inventory_hostname | match("[a-z0-9]([-a-z0-9]*[a-z0-9])?$")
msg: "Hostname must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character"
ignore_errors: "{{ ignore_assert_errors }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment