Skip to content

Commit 755ccda

Browse files
authored
Merge branch 'openstack-k8s-operators:main' into update-crds-test-operator
2 parents d7b26db + 242c946 commit 755ccda

File tree

15 files changed

+772
-12
lines changed

15 files changed

+772
-12
lines changed

ansible.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ inventory = inventory.yml
1616
pipelining = True
1717
any_errors_fatal = True
1818
[ssh_connection]
19-
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
19+
ssh_args = -o ControlMaster=auto -o ControlPersist=300

clean_openstack_deployment.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
- name: Clean OpenStack deployment
2+
hosts: "{{ target_host | default('localhost') }}"
3+
gather_facts: false
4+
tasks:
5+
- name: Clean up OpenStack operators
6+
vars:
7+
cifmw_kustomize_deploy_keep_generated_crs: false
8+
ansible.builtin.include_role:
9+
name: kustomize_deploy
10+
tasks_from: cleanup

playbooks/06-deploy-architecture.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,12 @@
226226
tags:
227227
- update_containers
228228
- edpm_bootstrap
229+
when: cifmw_ci_gen_kustomize_values_deployment_version is not defined
229230

230231
- name: Update containers in deployed OSP operators using set_openstack_containers role
231-
when: cifmw_set_openstack_containers | default(false) | bool
232+
when:
233+
- cifmw_set_openstack_containers | default(false) | bool
234+
- cifmw_ci_gen_kustomize_values_deployment_version is not defined
232235
ansible.builtin.include_role:
233236
name: set_openstack_containers
234237
tags:

playbooks/update.yml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
cifmw_set_openstack_containers_openstack_final_env: "operator_env_after_update.txt"
4040
ansible.builtin.include_role:
4141
name: set_openstack_containers
42+
when: cifmw_ci_gen_kustomize_values_deployment_version is not defined
4243

4344
- name: Sync repos for controller to compute
4445
hosts: computes

0 commit comments

Comments
 (0)