Skip to content

Instantly share code, notes, and snippets.

@ngotzmann
Created September 13, 2025 10:47
Show Gist options
  • Select an option

  • Save ngotzmann/3c331a7871e1a87fca87c317ae02c179 to your computer and use it in GitHub Desktop.

Select an option

Save ngotzmann/3c331a7871e1a87fca87c317ae02c179 to your computer and use it in GitHub Desktop.
export default async function () {
const config = ansibleConfigLoader.getConfig('./configs/prod.yml');
const k8sGroup = getGroupConfig(config, 'kubernetes');
const ungroupedConfig = getUngroupedConfig(config);
describe('Validate on all k8s hosts that node exporter is running', () => {
checkCrioProcess(k8sGroup, ungroupedConfig);
checkKubeletProcess(k8sGroup, ungroupedConfig);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment