incalculable-diamond-5088
10/18/2019, 7:51 PMworried-city-86458
10/19/2019, 12:51 AMpulumi up
with no significiant changes
Ubuntu 18.04.3, nodejs 12.11.1, @pulumi/pulumi 1.3.4, @pulumi/aws 1.7.0, @pulumi/kubernetes 1.2.3
Not sure but is the hang issue supposed to be fixed now?early-intern-90238
10/19/2019, 2:27 AMhandsome-xylophone-18806
10/19/2019, 11:48 AMfile://~
for all projects and run pulumi up
for company
project then department
project, Pulumi will delete the company
stack and create stack for department
.
If using Pulumi Backend Service, this statement works:
new pulumi.StackReference('clstokes/aws-ts-stackreference-company/dev')
where clstokes
in the example is the Pulumi Backend Service username, aws-ts-stackreference-company
is the project name and dev
is the current stack.
If I set backend url, so each project has a separated .pulumi
at it's root directory
Pulumi.yaml
backend:
url: file://./
Now, how can I get the stack reference of company
or department
in team
project: new pulumi.StackReference('???')
?
new pulumi.StackReference('clstokes/aws-ts-stackreference-company/dev')
will produces error:
pulumi:pulumi:StackReference (clstokes/aws-ts-stackreference-company/dev):
error: Preview failed: unknown stack "clstokes/aws-ts-stackreference-company/dev"
cold-coat-35200
10/19/2019, 12:13 PMearly-intern-90238
10/19/2019, 5:28 PMglamorous-printer-66548
10/19/2019, 5:30 PMsteep-toddler-94095
10/20/2019, 10:25 PMtall-rose-87315
10/21/2019, 5:22 AMminiature-potato-84713
10/21/2019, 10:05 AMhappy-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, 8:39 PM