Nils Balkow-Tychsen
Nils Balkow-Tychsen
Hi @ugandhar84 , you can initialize the KubeLibrary with the paramater `incluster=True` ``` Library KubeLibrary incluster=True ``` You can read about it in the keyword documentation [here](https://devopsspiral.com/KubeLibrary/#In%20cluster%20execution).
With `incluster=True` the KubeLibrary calles this [function](https://github.com/kubernetes-client/python/blob/851dc2a0b10d1bc07826c6ade489d1bd2ef431c3/kubernetes/base/config/incluster_config.py#L37) in the python kubernetes client. The error message `Service host/port is not set.` means that it can not find the environment variables `KUBERNETES_SERVICE_HOST`...
hmm... You somehow need to run the robot test with the KubeLibrary inside the host, you are connecting to via SSH. I have not used the SSH lib myself, but...
Hi @sparkymartin, please have a look at my PR #84 `kubectl cp` seems to be using the same functionality as `kubectl exec`. I added a few examples as test cases...
This guide seems to be helpful https://opensource.guide/code-of-conduct/
Hi @enraiha0307 , The `go run` command to run score-compose would be `go run ./cmd/score-compose`. I updated it now in the readme. Looking at your test report it seems to...