added some required libs

This commit is contained in:
hwinkel
2023-08-05 15:50:19 +02:00
parent c3cc840791
commit ca1e714c51
13 changed files with 130 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
#include <string>
#include <yaml.h>
namespace kubecontrol
{
class kubecontrol
{
public:
kubecontrol(std::string pathToKubectlConfig);
void getPods();
};
}