summaryrefslogtreecommitdiffstats
path: root/examples/collection
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
commit2fe34b6444502079dc0b84365ce82dbc92de308e (patch)
tree8fedcab52bbbc3db6c5aa909a88a7a7b81685018 /examples/collection
parentInitial commit. (diff)
downloadansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.tar.xz
ansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.zip
Adding upstream version 6.17.2.upstream/6.17.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/collection')
-rw-r--r--examples/collection/CHANGELOG.rst0
-rw-r--r--examples/collection/galaxy.yml17
-rw-r--r--examples/collection/meta/runtime.yml0
-rw-r--r--examples/collection/plugins/modules/alpha.py44
-rw-r--r--examples/collection/plugins/modules/deep/beta.py44
5 files changed, 105 insertions, 0 deletions
diff --git a/examples/collection/CHANGELOG.rst b/examples/collection/CHANGELOG.rst
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/examples/collection/CHANGELOG.rst
diff --git a/examples/collection/galaxy.yml b/examples/collection/galaxy.yml
new file mode 100644
index 0000000..d21efb2
--- /dev/null
+++ b/examples/collection/galaxy.yml
@@ -0,0 +1,17 @@
+---
+name: foo
+namespace: bar
+version: 0.0.0 # noqa: galaxy[version-incorrect]
+authors:
+ - John
+readme: ../README.md
+description: "..."
+dependencies:
+ other_namespace.collection1: ">=1.0.0"
+ other_namespace.collection2: ">=2.0.0,<3.0.0"
+ anderson55.my_collection: "*" # note: "*" selects the highest version available
+license:
+ - GPL # <-- invalid license value based on galaxy schema, a value like GPL-3.0-or-later would work
+ - Apache-2.0
+repository: some-url
+tags: [networking, test_tag]
diff --git a/examples/collection/meta/runtime.yml b/examples/collection/meta/runtime.yml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/examples/collection/meta/runtime.yml
diff --git a/examples/collection/plugins/modules/alpha.py b/examples/collection/plugins/modules/alpha.py
new file mode 100644
index 0000000..c806cad
--- /dev/null
+++ b/examples/collection/plugins/modules/alpha.py
@@ -0,0 +1,44 @@
+"""An ansible test module."""
+
+
+DOCUMENTATION = """
+module: mod_1
+author:
+- test
+short_description: This is a test module
+description:
+- This is a test module
+version_added: 1.0.0
+options:
+ foo:
+ description:
+ - Dummy option I(foo)
+ type: str
+ bar:
+ description:
+ - Dummy option I(bar)
+ default: candidate
+ type: str
+ choices:
+ - candidate
+ - running
+ aliases:
+ - bam
+notes:
+- This is a dummy module
+"""
+
+EXAMPLES = """
+- name: test task-1
+ company_name.coll_1.mod_1:
+ foo: some value
+ bar: candidate
+"""
+
+RETURN = """
+baz:
+ description: test return 1
+ returned: success
+ type: list
+ sample: ['a','b']
+"""
diff --git a/examples/collection/plugins/modules/deep/beta.py b/examples/collection/plugins/modules/deep/beta.py
new file mode 100644
index 0000000..ffd9ff8
--- /dev/null
+++ b/examples/collection/plugins/modules/deep/beta.py
@@ -0,0 +1,44 @@
+"""An ansible test module."""
+
+
+DOCUMENTATION = """
+module: mod_2
+author:
+- test
+short_description: This is a test module
+description:
+- This is a test module
+version_added: 1.0.0
+options:
+ foo:
+ description:
+ - Dummy option I(foo)
+ type: str
+ bar:
+ description:
+ - Dummy option I(bar)
+ default: candidate
+ type: str
+ choices:
+ - candidate
+ - running
+ aliases:
+ - bam
+notes:
+- This is a dummy module
+"""
+
+EXAMPLES = """
+- name: test task-1
+ company_name.coll_1.mod_2:
+ foo: some value
+ bar: candidate
+"""
+
+RETURN = """
+baz:
+ description: test return 1
+ returned: success
+ type: list
+ sample: ['a','b']
+"""