Fix broken links in docs (#61)

This commit is contained in:
Abhijeet Kasurde
2021-04-16 10:19:47 +05:30
committed by GitHub
parent 8182a3afd4
commit 28223dbe36
17 changed files with 107 additions and 112 deletions

View File

@@ -298,7 +298,7 @@ Parameters
</td>
<td>
<ul style="margin: 0; padding: 0"><b>Choices:</b>
<li>community.kubernetes.k8s</li>
<li>kubernetes.core.k8s</li>
<li>k8s</li>
</ul>
</td>
@@ -317,25 +317,25 @@ Parameters
Examples
--------
.. code-block:: yaml+jinja
.. code-block:: yaml
# File must be named k8s.yaml or k8s.yml
# Authenticate with token, and return all pods and services for all namespaces
plugin: community.kubernetes.k8s
plugin: kubernetes.core.k8s
connections:
- host: https://192.168.64.4:8443
api_key: xxxxxxxxxxxxxxxx
validate_certs: false
# Use default config (~/.kube/config) file and active context, and return objects for a specific namespace
plugin: community.kubernetes.k8s
plugin: kubernetes.core.k8s
connections:
- namespaces:
- testing
# Use a custom config file, and a specific context.
plugin: community.kubernetes.k8s
plugin: kubernetes.core.k8s
connections:
- kubeconfig: /path/to/config
context: 'awx/192-168-64-4:8443/developer'