white-balloon-205
06/20/2018, 4:40 AMimport * as pulumi from "@pulumi/pulumi";
import * as jenkins from "./jenkins";
const config = new pulumi.Config("jenkins");
const instance = new jenkins.Instance("jenkins", {
name: "jenkins",
credentials: {
username: config.require("username"),
password: config.require("password"),
},
resources: {
memory: "512Mi",
cpu: "100m",
}
});
/cc also @creamy-potato-29402 who has been doing a bunch of work in this area and probably has more thoughts as well.blue-answer-29496
06/20/2018, 5:07 AM