Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

k8s: update openshift requirements in documentation #70479

Merged
merged 1 commit into from Jul 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelogs/fragments/k8s-requirements-doc-update.yml
@@ -0,0 +1,2 @@
minor_changes:
- k8s - update openshift requirements in documentation
4 changes: 3 additions & 1 deletion lib/ansible/modules/clustering/k8s/k8s.py
Expand Up @@ -114,7 +114,7 @@
validate:
description:
- how (if at all) to validate the resource definition against the kubernetes schema.
Requires the kubernetes-validate python module
Requires the kubernetes-validate python module and openshift >= 0.8.0
suboptions:
fail_on_error:
description: whether to fail on validation errors.
Expand All @@ -135,13 +135,15 @@
- The full definition of an object is needed to generate the hash - this means that deleting an object created with append_hash
will only work if the same object is passed with state=absent (alternatively, just use state=absent with the name including
the generated hash and append_hash=no)
- Requires openshift >= 0.7.2
type: bool
version_added: "2.8"
apply:
description:
- C(apply) compares the desired resource definition with the previously supplied resource definition,
ignoring properties that are automatically generated
- C(apply) works better with Services than 'force=yes'
- Requires openshift >= 0.9.2
- mutually exclusive with C(merge_type)
type: bool
version_added: "2.9"
Expand Down