# Copyright 2021 Dell Inc. or its subsidiaries. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. --- - name: Check if omnia_vault_key exists stat: path: "{{ role_path }}/../../../{{ config_vaultname }}" register: vault_key_result - name: Create ansible vault key if it does not exist set_fact: vault_key: "{{ lookup('password', '/dev/null chars=ascii_letters') }}" when: not vault_key_result.stat.exists - name: Save vault key copy: dest: "{{ role_path }}/../../../{{ config_vaultname }}" content: | {{ vault_key }} owner: root force: yes mode: "{{ vault_file_perm }}" when: not vault_key_result.stat.exists - name: Check if omnia config file is encrypted command: cat {{ role_path }}/../../../{{ config_filename }} changed_when: false register: config_content no_log: True - name: Decrpyt omnia_config.yml command: >- ansible-vault decrypt {{ role_path }}/../../../{{ config_filename }} --vault-password-file {{ role_path }}/../../../{{ config_vaultname }} when: "'$ANSIBLE_VAULT;' in config_content.stdout" - name: Include variable file omnia_config.yml include_vars: "{{ role_path }}/../../../{{ config_filename }}" no_log: True - name: Validate input parameters are not empty fail: msg: "{{ input_omnia_failure_msg }}" register: input_config_check when: - mariadb_password | length < 1 or k8s_version | length < 1 or k8s_cni | length < 1 or domain_name | length < 1 - name: Validate login node parameters when login_node_reqd is set to true fail: msg: "{{ omnia_input_config_failure_msg }}" when: - ( domain_name | length < 1 or realm_name | length < 1 or directory_manager_password | length < 1 or ipa_admin_password | length < 1 ) and ( login_node_required and host_mapping_file ) - name: Assert mariadb_password assert: that: - mariadb_password | length > min_length | int - 1 - mariadb_password | length < max_length | int + 1 - '"-" not in mariadb_password ' - '"\\" not in mariadb_password ' - '"\"" not in mariadb_password ' - " \"'\" not in mariadb_password " success_msg: "{{ success_msg_mariadb_password }}" fail_msg: "{{ fail_msg_mariadb_password }}" - name: Assert kubernetes version assert: that: "('1.16.7' in k8s_version) or ('1.19.3' in k8s_version)" success_msg: "{{ success_msg_k8s_version }}" fail_msg: "{{ fail_msg_k8s_version }}" - name: Assert kubernetes cni assert: that: "('calico' in k8s_cni) or ('flannel' in k8s_cni)" success_msg: "{{ success_msg_k8s_cni }}" fail_msg: "{{ fail_msg_k8s_cni }}" - name: Save input variables from file set_fact: db_password: "{{ mariadb_password }}" k8s_version: "{{ k8s_version }}" k8s_cni: "{{ k8s_cni }}" docker_username: "{{ docker_username }}" docker_password: "{{ docker_password }}" no_log: True - name: Verify the value of login_node_required assert: that: - login_node_required == true or login_node_required == false success_msg: "{{ login_node_required_success_msg }}" fail_msg: "{{ login_node_required_fail_msg }}" - name: Validate the domain name assert: that: - domain_name is regex("^(?!-)[A-Za-z0-9-]+([\\-\\.]{1}[a-z0-9]+)*\\.[A-Za-z]{2,}$") success_msg: "{{ domain_name_success_msg }}" fail_msg: "{{ domain_name_fail_msg }}" when: - host_mapping_file - login_node_required - name: Validate the realm name assert: that: - realm_name is regex("^(?!-)[A-Z0-9-]+([\\-\\.]{1}[a-z0-9]+)*\\.[A-Z]{2,}$") - '"." in realm_name' success_msg: "{{ realm_name_success_msg }}" fail_msg: "{{ realm_name_fail_msg }}" when: - host_mapping_file - login_node_required - name: Assert directory_manager_password assert: that: - directory_manager_password | length > min_length | int - 1 - directory_manager_password | length < max_length | int + 1 - '"-" not in directory_manager_password ' - '"\\" not in directory_manager_password ' - '"\"" not in directory_manager_password ' - " \"'\" not in directory_manager_password " success_msg: "{{ success_msg_directory_manager_password }}" fail_msg: "{{ fail_msg_directory_manager_password }}" when: - host_mapping_file - login_node_required - name: Assert ipa_admin_password assert: that: - ipa_admin_password | length > min_length | int - 1 - ipa_admin_password | length < max_length | int + 1 - '"-" not in ipa_admin_password ' - '"\\" not in ipa_admin_password ' - '"\"" not in ipa_admin_password ' - " \"'\" not in ipa_admin_password " success_msg: "{{ success_msg_ipa_admin_password }}" fail_msg: "{{ fail_msg_ipa_admin_password }}" when: - host_mapping_file - login_node_required - name: Encrypt input config file command: >- ansible-vault encrypt {{ role_path }}/../../../{{ config_filename }} --vault-password-file {{ role_path }}/../../../{{ config_vaultname }} changed_when: false - name: Update omnia_config.yml permission file: path: "{{ role_path }}/../../../{{ config_filename }}" mode: "{{ vault_file_perm }}"