happy-parrot-60128
10/21/2019, 10:50 AMaws:CallbackRuntimeVersion
?happy-parrot-60128
10/21/2019, 10:53 AMruntime
on the CallbackFunction
defaulting to NodeJS8d10Runtime
- so then any Callback
would also get the same default?happy-parrot-60128
10/21/2019, 10:55 AMCallback
to CallbackFunction
? Happy to open an issue to look at changing the default to a supported runtime … no idea where to start with fixing it though 🤷 😬broad-carpenter-48576
10/21/2019, 12:12 PMencryptedkey
line in there which I’m assuming is the encryption salt which is encrypted using the kms key?rhythmic-finland-36256
10/21/2019, 5:04 PMNOTE: If you’re authenticating using a Service Principal then it must have permissions to bothon the terraform provider docs. Has anybody usedandRead and write all applications
within the Windows Azure Active Directory API.Sign in and read user profile
azuread
together with a ServicePrincipal
authentication and can point me the right way?damp-pillow-67781
10/21/2019, 10:52 PM➜ pulumi login <https://api.pulumi.com>
Logging in using access token from PULUMI_ACCESS_TOKEN
error: problem logging in: failed to get the home path: getting current user: user: unknown userid 1985127753
tall-rose-87315
10/22/2019, 1:28 AMelegant-dress-88912
10/22/2019, 2:39 AMdata
section is updated. is it a known issue or expected behavior? Can't find it issues on github.
kubernetes:core:ConfigMap argocd-cm replace [diff: ~data]
wooden-flower-29265
10/22/2019, 10:28 AMcold-coat-35200
10/22/2019, 11:18 AMcool-egg-852
10/22/2019, 2:24 PMcool-egg-852
10/22/2019, 4:48 PMup
fails because a K8s job fails, when running pulumi up
again, shouldn’t it try to replace the job?crooked-jelly-50877
10/22/2019, 6:06 PMhelpful-bear-175
10/22/2019, 7:30 PMhigh-morning-18773
10/22/2019, 7:54 PMraise TypeError(f'Object of type {o.__class__.__name__} '
TypeError: Object of type Output is not JSON serializable
.best-hydrogen-40271
10/22/2019, 8:21 PMbest-hydrogen-40271
10/22/2019, 8:28 PMcool-egg-852
10/22/2019, 8:32 PMcool-egg-852
10/22/2019, 8:33 PMconst serviceAccount = new gcp.serviceAccount.Account(config.project, {
accountId: config.project,
displayName: config.project
});
const key = new gcp.serviceAccount.Key(config.project, {
publicKeyType: 'TYPE_X509_PEM_FILE',
serviceAccountId: serviceAccount.name
});
const gcpCredentials = new k8s.core.v1.Secret('gcp-credentials', {
metadata: {
namespace: namespace.metadata.name,
labels: config.appLabels
},
type: 'Opaque',
stringData: {
'gcp-credentials.json': key.privateKey.apply(x => Buffer.from(x, 'base64').toString('utf8'))
}
});
best-hydrogen-40271
10/22/2019, 8:39 PMbest-hydrogen-40271
10/22/2019, 9:31 PMpulumi up
is trying to connect to a cluster that doesnt exist, because it hasn't created it yetbest-hydrogen-40271
10/22/2019, 9:31 PMbest-hydrogen-40271
10/22/2019, 9:36 PMbest-hydrogen-40271
10/22/2019, 10:11 PMbest-hydrogen-40271
10/22/2019, 10:11 PMbest-hydrogen-40271
10/22/2019, 10:11 PMbest-hydrogen-40271
10/22/2019, 10:11 PMrandom.RandomPassword
?best-hydrogen-40271
10/22/2019, 10:17 PMnodeconfig
best-hydrogen-40271
10/22/2019, 10:17 PMbest-hydrogen-40271
10/22/2019, 10:20 PMconst primary = new GkeCluster("Primary", {});
const primaryStandardNodes = new gcp.container.NodePool(
"primary-standard-nodes",
{
cluster: primary.cluster.name,
nodeConfig: {
machineType: "n1-standard-1",
metadata: {
"disable-legacy-endpoints": "true"
},
oauthScopes: [
"<https://www.googleapis.com/auth/logging.write>",
"<https://www.googleapis.com/auth/monitoring>"
],
preemptible: false
},
nodeCount: 1
}
);