From 1a87822704e6a2bc272e7542becc3b714093fc72 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 19 May 2020 19:58:20 -0700 Subject: [PATCH] Fix the environment variable This was using k8S_AUTH_CONTEXT with a lowercase k. That doesn't match with any of the other K8s stuff so users would probably be confused why their envvar wasn't working. --- plugins/connection/oc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/connection/oc.py b/plugins/connection/oc.py index a07e936c58..c0b3a42071 100644 --- a/plugins/connection/oc.py +++ b/plugins/connection/oc.py @@ -85,7 +85,7 @@ DOCUMENTATION = ''' vars: - name: ansible_oc_context env: - - name: k8S_AUTH_CONTEXT + - name: K8S_AUTH_CONTEXT oc_host: description: - URL for accessing the API.