'Cannot execute k8s module
My code in tasks/main.yml
.
- name: Check Istio services
k8s_info:
api_version: v1
kind: Service
namespace: istio-system
But it returns;
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ImportError: No module named kubernetes
fatal: [localhost]: FAILED! => {"changed": false, "error": "No module named kubernetes",
"msg": "Failed to import the required Python library (openshift) on Gihu's-MacBook-Pro.local's Python /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python.
Why does this issue happen?
Solution 1:[1]
Execute command;
sudo pip install --upgrade --user openshift
Solution 2:[2]
the install of the openshift (and really a whole ansible install) is required on the target host
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | munene |