Difference between revisions of "Kubernetes.core.k8s Ansible module"

From wikieduonline
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 13: Line 13:
 
     [[state: present]]
 
     [[state: present]]
  
 +
Apply a manifest:
 +
- name: Apply metrics-server manifest to the cluster.
 +
  kubernetes.core.k8s:
 +
    state: present
 +
    src: ~/metrics-server.yaml
 +
 +
 +
* <code>[[api_key]]</code> - [[Token]] used to authenticate with the API. Can also be specified via <code>[[K8S_AUTH_API_KEY]]</code> [[environment variable]].
  
  
 
== See also ==
 
== See also ==
 +
* {{Ansible K8s module}}
 
* {{Ansible modules}}
 
* {{Ansible modules}}
  
 
[[Category:Ansible]]
 
[[Category:Ansible]]
 +
[[Category:K8s]]

Latest revision as of 14:42, 24 November 2022

kubernetes.core.k8s


Create a namespace:

- name: Create a k8s namespace
  kubernetes.core.k8s:
    name: testing
    api_version: v1
    kind: Namespace
    state: present

Apply a manifest:

- name: Apply metrics-server manifest to the cluster.
  kubernetes.core.k8s:
    state: present
    src: ~/metrics-server.yaml



See also[edit]

Advertising: