This file contains 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
#!/usr/bin/env node | |
const { exec } = require('child_process'); | |
// IPMI credentials and host | |
const ipmiHost = '192.168.86.214'; | |
const ipmiUser = 'ADMIN'; | |
const ipmiPass = 'ADMIN'; | |
// Variables to hold the average temperature and the flag for high temperature |
This file contains 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
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: satisfactory | |
labels: | |
istio-injection: enabled | |
--- | |
apiVersion: v1 | |
kind: PersistentVolume |