Add ConfigMap support to kubernetes module (#21014)

pull/4420/head
Kamil Cholewiński 2017-08-09 22:03:35 +02:00 committed by Ryan Brown
parent a78f3faa6c
commit b5414088a3
1 changed files with 1 additions and 0 deletions

1
lib/ansible/modules/clustering/kubernetes.py Normal file → Executable file
View File

@ -198,6 +198,7 @@ from ansible.module_utils.urls import fetch_url
KIND_URL = {
"binding": "/api/v1/namespaces/{namespace}/bindings",
"configmap": "/api/v1/namespaces/{namespace}/configmaps",
"endpoints": "/api/v1/namespaces/{namespace}/endpoints",
"limitrange": "/api/v1/namespaces/{namespace}/limitranges",
"namespace": "/api/v1/namespaces",