mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-08 05:52:37 +00:00
Minor doc fixes (#114)
* Spelling fixes * Documentation update * Example update to use FQCN Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
@@ -7,7 +7,7 @@ from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: helm_repository
|
||||
|
||||
@@ -59,21 +59,21 @@ options:
|
||||
repo_state:
|
||||
choices: ['present', 'absent']
|
||||
description:
|
||||
- Desirated state of repositoriy.
|
||||
- Desirated state of repository.
|
||||
required: false
|
||||
default: present
|
||||
aliases: [ state ]
|
||||
type: str
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
EXAMPLES = r'''
|
||||
- name: Add default repository
|
||||
helm_repository:
|
||||
community.kubernetes.helm_repository:
|
||||
name: stable
|
||||
repo_url: https://kubernetes-charts.storage.googleapis.com
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
RETURN = r''' # '''
|
||||
|
||||
import traceback
|
||||
|
||||
|
||||
Reference in New Issue
Block a user