From e85fbb3621cb36a7de3d2826609fd8b97df218a5 Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Tue, 2 Jan 2024 15:43:42 +0100 Subject: [PATCH] Removing last remnants of the old API Signed-off-by: Jiri Podivin --- api/v1beta1/openstack_ansibleee_types.go | 1 - docs/openstack_ansibleee.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/api/v1beta1/openstack_ansibleee_types.go b/api/v1beta1/openstack_ansibleee_types.go index 0d886def..2339d0d6 100644 --- a/api/v1beta1/openstack_ansibleee_types.go +++ b/api/v1beta1/openstack_ansibleee_types.go @@ -53,7 +53,6 @@ type OpenStackAnsibleEESpec struct { // Important: Run "make" to regenerate code after modifying this file // Play is an inline playbook contents that ansible will run on execution. - // If both Play and Roles are specified, Play takes precedence Play string `json:"play,omitempty"` // Playbook is the playbook that ansible will run on this execution, accepts path or FQN from collection Playbook string `json:"playbook,omitempty"` diff --git a/docs/openstack_ansibleee.md b/docs/openstack_ansibleee.md index abfcfa25..09d19601 100644 --- a/docs/openstack_ansibleee.md +++ b/docs/openstack_ansibleee.md @@ -50,7 +50,7 @@ OpenStackAnsibleEESpec defines the desired state of OpenStackAnsibleEE | Field | Description | Scheme | Required | | ----- | ----------- | ------ | -------- | -| play | Play is an inline playbook contents that ansible will run on execution. If both Play and Roles are specified, Play takes precedence | string | false | +| play | Play is an inline playbook contents that ansible will run on execution. | string | false | | playbook | Playbook is the playbook that ansible will run on this execution, accepts path or FQN from collection | string | false | | image | Image is the container image that will execute the ansible command | string | false | | args | Args are the command plus the playbook executed by the image. If args is passed, Playbook is ignored. | []string | false |