Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions roles/test_operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ Default value: {}
* `cifmw_test_operator_ansibletest_compute_ssh_key_secret_name`: (String) The name of the k8s secret that contains an ssh key for computes. Default value: `dataplane-ansible-ssh-private-key-secret`
* `cifmw_test_operator_ansibletest_workload_ssh_key_secret_name`: (String) The name of the k8s secret that contains an ssh key for the ansible workload. Default value: `""`
* `cifmw_test_operator_ansibletest_ansible_git_repo`: (String) Git repo to clone into container. Default value: `""`
* `cifmw_test_operator_ansibletest_ansible_git_branch`: (String) Git branch to checkout from the repo. Default value: `""`
* `cifmw_test_operator_ansibletest_ansible_playbook_path`: (String) Path to ansible playbook. Default value: `""`
* `cifmw_test_operator_ansibletest_ansible_collection`: (String) Extra ansible collections to install in addition to the ones that exist in the requirements.yaml. Default value: `""`
* `cifmw_test_operator_ansibletest_ansible_var_files`: (String) interface to create ansible var files. Default value: `""`
Expand All @@ -212,6 +213,7 @@ Default value: {}
computeSSHKeySecretName: "{{ cifmw_test_operator_ansibletest_compute_ssh_key_secret_name }}"
workloadSSHKeySecretName: "{{ cifmw_test_operator_ansibletest_workload_ssh_key_secret_name }}"
ansibleGitRepo: "{{ cifmw_test_operator_ansibletest_ansible_git_repo }}"
ansibleGitBranch: "{{ cifmw_test_operator_ansibletest_ansible_git_branch }}"
ansiblePlaybookPath: "{{ cifmw_test_operator_ansibletest_ansible_playbook_path }}"
ansibleCollections: "{{ cifmw_test_operator_ansibletest_ansible_collection }}"
ansibleVarFiles: "{{ cifmw_test_operator_ansibletest_ansible_var_files }}"
Expand Down
2 changes: 2 additions & 0 deletions roles/test_operator/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ cifmw_test_operator_ansibletest_image_tag: "{{ cifmw_test_operator_default_image
cifmw_test_operator_ansibletest_compute_ssh_key_secret_name: "dataplane-ansible-ssh-private-key-secret"
cifmw_test_operator_ansibletest_workload_ssh_key_secret_name: ""
cifmw_test_operator_ansibletest_ansible_git_repo: ""
cifmw_test_operator_ansibletest_ansible_git_branch: ""
cifmw_test_operator_ansibletest_ansible_playbook_path: ""
cifmw_test_operator_ansibletest_ansible_collection: ""
cifmw_test_operator_ansibletest_ansible_var_files: ""
Expand Down Expand Up @@ -260,6 +261,7 @@ cifmw_test_operator_ansibletest_config:
computeSSHKeySecretName: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_compute_ssh_key_secret_name }}"
workloadSSHKeySecretName: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_workload_ssh_key_secret_name }}"
ansibleGitRepo: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_ansible_git_repo }}"
ansibleGitBranch: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_ansible_git_branch }}"
ansiblePlaybookPath: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_ansible_playbook_path }}"
ansibleCollections: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_ansible_collection }}"
ansibleVarFiles: "{{ stage_vars_dict.cifmw_test_operator_ansibletest_ansible_var_files }}"
Expand Down