Created
September 13, 2025 10:47
-
-
Save ngotzmann/3c331a7871e1a87fca87c317ae02c179 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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