14 lines
209 B
C++
14 lines
209 B
C++
#include <string>
|
|
#include <yaml.h>
|
|
|
|
namespace kubecontrol
|
|
{
|
|
class kubecontrol
|
|
{
|
|
public:
|
|
kubecontrol(std::string pathToKubectlConfig);
|
|
void getPods();
|
|
|
|
|
|
};
|
|
} |