From b5414088a36040ec69702769aff53ef8410bc1b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Cholewi=C5=84ski?= Date: Wed, 9 Aug 2017 22:03:35 +0200 Subject: [PATCH] Add ConfigMap support to kubernetes module (#21014) --- lib/ansible/modules/clustering/kubernetes.py | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 lib/ansible/modules/clustering/kubernetes.py diff --git a/lib/ansible/modules/clustering/kubernetes.py b/lib/ansible/modules/clustering/kubernetes.py old mode 100644 new mode 100755 index 71592889954..e7a1e50baa6 --- a/lib/ansible/modules/clustering/kubernetes.py +++ b/lib/ansible/modules/clustering/kubernetes.py @@ -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",