echo 'user ALL=(ALL) NOPASSWD: ALL' | sudo tee /etc/sudoers.d/user
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
import * as child_process from "child_process"; | |
import * as pulumi from "@pulumi/pulumi"; | |
import * as k8s from "@pulumi/kubernetes"; | |
const SPAWN_PROCESS_BUFFER_SIZE = 104857600; | |
export const repos = { | |
stable: "https://kubernetes-charts.storage.googleapis.com", | |
prometheus: "https://prometheus-community.github.io/helm-charts", | |
jetstack: "https://charts.jetstack.io", |
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
/** | |
* Loop through a table and pull out certain cells of data. | |
* | |
* This loops through a the rows of a table and grabs the requested cell(s) from each row. | |
* Cell data is seperated with tabs when multiple cells of data are requested OR with the | |
* combine flag set to true the data will be combined into a single string per row. | |
* | |
* Version: Alpha | |
* | |
* @param {int} id The value of the tables HTML id attribute. |