Skip to content

Commit 05bf8cb

Browse files
Merge pull request #854 from openstack-k8s-operators/renovate/openstack-k8s-operators
Update github.com/openstack-k8s-operators/openstack-ansibleee-operator/api digest to f345621
2 parents 9d256e9 + d7a0643 commit 05bf8cb

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ require (
3333
github.com/openstack-k8s-operators/neutron-operator/api v0.3.1-0.20240612151610-3a231baf6d66
3434
github.com/openstack-k8s-operators/nova-operator/api v0.3.1-0.20240613191819-c7395c1ce221
3535
github.com/openstack-k8s-operators/octavia-operator/api v0.3.1-0.20240614142111-2787761a35ad
36-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614082333-ba5ccac57b98
36+
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614182704-f34562163ea1
3737
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.3.1-0.20240604070904-cdec81ca1825
3838
github.com/openstack-k8s-operators/openstack-operator/apis v0.0.0-20240531084739-3b4c0451297c
3939
github.com/openstack-k8s-operators/ovn-operator/api v0.3.1-0.20240614143745-cbe8d2bba3e4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ github.com/openstack-k8s-operators/nova-operator/api v0.3.1-0.20240613191819-c73
138138
github.com/openstack-k8s-operators/nova-operator/api v0.3.1-0.20240613191819-c7395c1ce221/go.mod h1:WBFg1svuMtir+Geo7InZAsEy1LljZkQHfIWuMLMDhTI=
139139
github.com/openstack-k8s-operators/octavia-operator/api v0.3.1-0.20240614142111-2787761a35ad h1:1KeQrhokDl+Ijlh8DZg/1rWKtXbaplxvh+k8mkR3nTc=
140140
github.com/openstack-k8s-operators/octavia-operator/api v0.3.1-0.20240614142111-2787761a35ad/go.mod h1:h03g3HXawiEFYu4r9MD79RXrjc+UGivcHo/Sq2ByUC0=
141-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614082333-ba5ccac57b98 h1:sEVsQ3soYeIQvfUPloDaZLo60/j0avLI+st/n1Mc8LA=
142-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614082333-ba5ccac57b98/go.mod h1:xUs3AGYcf5NjmKqQeMfyQO+R824WTliFqCxYSynjbxw=
141+
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614182704-f34562163ea1 h1:w6PPDppuWyfgiJH4ZncdZohTLWISsD94sQ8SViW+e+k=
142+
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.3.1-0.20240614182704-f34562163ea1/go.mod h1:xUs3AGYcf5NjmKqQeMfyQO+R824WTliFqCxYSynjbxw=
143143
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.3.1-0.20240604070904-cdec81ca1825 h1:kr9NflFeXZfNBmx2ilSbcsXn8uI9Qx+RzOQXNiCQnX8=
144144
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.3.1-0.20240604070904-cdec81ca1825/go.mod h1:h6Nak5Gev8lUM/5aKpjgDXy9Rj3/iICEySV+NPYr7Nw=
145145
github.com/openstack-k8s-operators/ovn-operator/api v0.3.1-0.20240614143745-cbe8d2bba3e4 h1:ytwZ/esu8n/azfG6U8BFQalZyf1nzPswlhklXm0RWJE=

pkg/dataplane/util/ansible_execution.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func AnsibleExecution(
102102
}
103103

104104
if len(service.Spec.PlaybookContents) > 0 {
105-
ansibleEE.Spec.Play = service.Spec.PlaybookContents
105+
ansibleEE.Spec.PlaybookContents = service.Spec.PlaybookContents
106106
}
107107
if len(service.Spec.Playbook) > 0 {
108108
ansibleEE.Spec.Playbook = service.Spec.Playbook

tests/kuttl/tests/dataplane-deploy-global-service-test/01-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ spec:
112112
extraVars:
113113
edpm_override_hosts: all
114114
name: openstackansibleee
115-
play: |
115+
playbookContents: |
116116
- hosts: localhost
117117
gather_facts: no
118118
name: global kuttl play

tests/kuttl/tests/dataplane-deploy-no-nodes-test/02-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
path: inventory
4747
secretName: dataplanenodeset-edpm-compute-no-nodes
4848
name: openstackansibleee
49-
play: |
49+
playbookContents: |
5050
- hosts: localhost
5151
gather_facts: no
5252
name: kuttl play

tests/kuttl/tests/dataplane-service-config/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ spec:
100100
path: inventory
101101
secretName: dataplanenodeset-edpm-compute-no-nodes
102102
name: openstackansibleee
103-
play: |
103+
playbookContents: |
104104
- hosts: localhost
105105
gather_facts: no
106106
name: kuttl play

tests/kuttl/tests/dataplane-service-failure/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ spec:
5353
edpm_override_hosts: edpm-compute-no-nodes
5454
edpm_service_type: failed-service
5555
name: openstackansibleee
56-
play: |
56+
playbookContents: |
5757
- hosts: localhost
5858
gather_facts: no
5959
name: kuttl play

0 commit comments

Comments
 (0)