Update modules

This commit is contained in:
Chris Houseknecht
2017-03-27 20:30:06 -04:00
parent b6689dd855
commit 8a7f78993f
147 changed files with 1904 additions and 768 deletions

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -613,16 +619,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -621,16 +627,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -88,6 +88,12 @@ options:
- env contains additional environment variables you want to pass into a builder - env contains additional environment variables you want to pass into a builder
container container
type: list type: list
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -96,16 +102,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -85,16 +91,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -127,16 +133,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -116,16 +122,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -85,16 +91,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
group_names: group_names:
description: description:
- GroupNames holds all the groups directly bound to the role. This field should - GroupNames holds all the groups directly bound to the role. This field should
@@ -128,16 +134,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
subjects: subjects:
description: description:
- Subjects hold object references to authorize with this rule. This field is ignored - Subjects hold object references to authorize with this rule. This field is ignored

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -36,6 +36,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -37,6 +37,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -86,16 +92,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -123,7 +129,7 @@ options:
type: dict type: dict
spec_strategy_custom_params: spec_strategy_custom_params:
description: description:
- When C(spec_strategy_type) is I(custom), provide a mapping of 'key:value' settings. - When C(spec_strategy_type) is I(Custom), provide a mapping of 'key:value' settings.
aliases: aliases:
- strategy_custom_params - strategy_custom_params
type: dict type: dict
@@ -136,7 +142,7 @@ options:
type: dict type: dict
spec_strategy_recreate_params: spec_strategy_recreate_params:
description: description:
- When C(spec_strategy_type) is I(recreate), provide a mapping of 'key:value' - When C(spec_strategy_type) is I(Recreate), provide a mapping of 'key:value'
settings. settings.
aliases: aliases:
- strategy_recreate_params - strategy_recreate_params
@@ -157,7 +163,7 @@ options:
type: dict type: dict
spec_strategy_rolling_params: spec_strategy_rolling_params:
description: description:
- When C(spec_strategy_type) is I(rolling), provide a mapping of 'key:value' settings. - When C(spec_strategy_type) is I(Rolling), provide a mapping of 'key:value' settings.
aliases: aliases:
- strategy_rolling_params - strategy_rolling_params
type: dict type: dict
@@ -165,9 +171,9 @@ options:
description: description:
- Type is the name of a deployment strategy. - Type is the name of a deployment strategy.
choices: choices:
- rolling - Rolling
- custom - Custom
- recreate - Recreate
aliases: aliases:
- strategy_type - strategy_type
spec_template_metadata_annotations: spec_template_metadata_annotations:
@@ -394,16 +400,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -26,6 +26,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -87,16 +93,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -81,16 +87,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
subsets: subsets:
description: description:
- The set of all endpoints is the union of all subsets. Addresses are placed into - The set of all endpoints is the union of all subsets. Addresses are placed into

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -36,6 +36,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -143,16 +149,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
type: type:
description: description:
- Type of this event (Normal, Warning), new types could be added in the future - Type of this event (Normal, Warning), new types could be added in the future

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -81,16 +87,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -117,16 +123,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Host is the name of the node. (This is redundant with the object's name, and - Host is the name of the node. (This is redundant with the object's name, and
@@ -86,16 +92,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
subnet: subnet:
description: description:
- Subnet is the CIDR range of the overlay network assigned to the node for its - Subnet is the CIDR range of the overlay network assigned to the node for its

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -36,6 +36,12 @@ options:
description: description:
- Extra holds extra information about this identity - Extra holds extra information about this identity
type: dict type: dict
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -91,16 +97,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
user_api_version: user_api_version:
description: description:
- API version of the referent. - API version of the referent.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -65,6 +65,12 @@ options:
- DockerImageSignatures provides the signatures as opaque blobs. This is a part - DockerImageSignatures provides the signatures as opaque blobs. This is a part
of manifest schema v1. of manifest schema v1.
type: list type: list
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -118,16 +124,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -40,6 +40,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -124,16 +130,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
type: type:
description: description:
- 'Required: Describes a type of stored blob.' - 'Required: Describes a type of stored blob.'

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -93,16 +99,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -36,6 +36,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
generation: generation:
description: description:
- Generation is the current generation of the tagged image - if tag is provided - Generation is the current generation of the tagged image - if tag is provided
@@ -181,16 +187,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
tag__from_api_version: tag__from_api_version:
description: description:
- API version of the referent. - API version of the referent.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -329,16 +335,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -87,16 +93,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -88,16 +94,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -90,16 +96,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -104,16 +110,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -42,6 +42,12 @@ options:
description: description:
- ExpiresIn is the seconds from CreationTime before this token expires. - ExpiresIn is the seconds from CreationTime before this token expires.
type: int type: int
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -101,16 +107,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
user_name: user_name:
description: description:
- UserName is the user name associated with this token - UserName is the user name associated with this token

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -47,6 +47,12 @@ options:
description: description:
- ExpiresIn is the seconds from CreationTime before this token expires. - ExpiresIn is the seconds from CreationTime before this token expires.
type: int type: int
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -37,6 +37,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
grant_method: grant_method:
description: description:
- 'GrantMethod determines how to handle grants for this client. If no method is - 'GrantMethod determines how to handle grants for this client. If no method is
@@ -112,16 +118,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -35,6 +35,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -88,16 +94,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
user_name: user_name:
description: description:
- UserName is the user name that authorized this client - UserName is the user name that authorized this client

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -530,16 +536,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -122,16 +128,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -252,16 +258,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -26,6 +26,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -26,6 +26,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -26,6 +26,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -81,16 +87,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
template_metadata_annotations: template_metadata_annotations:
description: description:
- Annotations is an unstructured key value map stored with a resource that may - Annotations is an unstructured key value map stored with a resource that may

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -85,16 +91,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -127,16 +133,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -38,6 +38,12 @@ options:
display_name: display_name:
description: description:
- Provides a descriptive name for the project. - Provides a descriptive name for the project.
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -94,16 +100,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -299,16 +305,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -94,16 +100,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -85,16 +91,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
group_names: group_names:
description: description:
- GroupNames holds all the groups directly bound to the role. This field should - GroupNames holds all the groups directly bound to the role. This field should
@@ -128,16 +134,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
subjects: subjects:
description: description:
- Subjects hold object references to authorize with this rule. This field is ignored - Subjects hold object references to authorize with this rule. This field is ignored

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -125,16 +131,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -169,16 +175,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -27,6 +27,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -63,16 +69,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
username: username:
description: description:
- Provide a username for connecting to the API. - Provide a username for connecting to the API.

View File

@@ -32,6 +32,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.

View File

@@ -39,6 +39,12 @@ options:
- Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log
default: false default: false
type: bool type: bool
force:
description:
- If set to C(True), and I(state) is C(present), an existing object will updated,
and lists will be replaced, rather than merged.
default: false
type: bool
host: host:
description: description:
- Provide a URL for acessing the Kubernetes API. - Provide a URL for acessing the Kubernetes API.
@@ -88,16 +94,18 @@ options:
type: path type: path
state: state:
description: description:
- Determines if the object should be created, patched, deleted or replaced. When - Determines if an object should be created, patched, or deleted. When set to
set to C(present), the object will be created, if it does not exist, or patched, C(present), the object will be created, if it does not exist, or patched, if
if requested parameters differ from existing object attributes. If set to C(absent), parameter values differ from the existing object's attributes, and deleted,
an existing object will be deleted, and if set to C(replaced), an existing object if set to C(absent). A patch operation results in merging lists and updating
will be completely replaced with a new object created from the supplied parameters. dictionaries, with lists being merged into a unique set of values. If a list
contains a dictionary with a I(name) or I(type) attribute, a strategic merge
is performed, where individual elements with a matching I(name_) or I(type)
are merged. To force the replacement of lists, set the I(force) option to C(True).
default: present default: present
choices: choices:
- present - present
- absent - absent
- replaced
string_data: string_data:
description: description:
- stringData allows specifying non-binary secret data in string form. It is provided - stringData allows specifying non-binary secret data in string form. It is provided

Some files were not shown because too many files have changed in this diff Show More