white-balloon-205
prehistoric-account-60014
12/18/2019, 5:51 PMgcloud builds submit
) Something like this could help increase speed CI/CD pipelines by building images with GCP instead of locally.limited-honey-31480
12/18/2019, 7:21 PMhandsome-cat-98152
12/19/2019, 8:37 AMprehistoric-account-60014
12/20/2019, 11:46 PMgcp.container.getRegistryRepository
? or is there a first-class resource like Azure’s azure.containerservice.Registry
?important-leather-28796
12/23/2019, 5:26 PMlocation: us-central1-f
to create the cluster I get complaints about Cannot determine region: set in this resource, or set provider-level 'region' or 'zone'
. It is true, I intend to explicitly set project, zone, region. What do I need to pass to gcp.container.Cluster
to satisfy it for a zonal cluster?important-leather-28796
12/23/2019, 7:54 PMipAllocationPolicy: {
useIpAliases: true, // creates the cluster with Alias IP addresses
createSubnetwork: true, // enables ip aliasing
},
but this config was removed. I used an explicit network/subnetwork passed to my cluster, but it does not trigger creation of a VPC native cluster. What could I be missing there @gentle-diamond-70147?prehistoric-account-60014
12/31/2019, 6:09 PMcould not get cloud url: unmarshalling credentials file: unexpected end of JSON input
? Specifically after calling gcloud auth activate-service-account --key-file "$KEY_FILE"
successfully?limited-honey-31480
01/08/2020, 4:03 PMcrooked-jelly-50877
01/23/2020, 7:13 PMerror: googleapi: Error 400: Master version "1.15.7-gke.2" is unsupported., badRequest
crooked-jelly-50877
01/23/2020, 7:14 PMcrooked-jelly-50877
01/23/2020, 7:34 PMsome-xylophone-39695
01/24/2020, 3:47 AMsome-xylophone-39695
01/24/2020, 3:47 AMsome-xylophone-39695
01/24/2020, 3:48 AMlimited-honey-31480
01/25/2020, 1:58 PMbetter-actor-92669
01/30/2020, 9:36 AMbland-florist-25081
01/30/2020, 11:21 AMgcloud config get-value project
returns the correct value but I can't figure out how to get it in pulumi.dry-raincoat-51244
01/30/2020, 3:09 PMbitter-article-12081
02/01/2020, 6:37 PMmelodic-byte-32771
02/02/2020, 3:57 PMastonishing-afternoon-15745
02/07/2020, 10:29 PMDiagnostics:
pulumi:pulumi:Stack (pulumi-gke-playground-dev):
panic: fatal: An assertion has failed: Expected diff to not require deletion or replacement during Update of urn:pulumi:dev::pulumi-gke-playground::gcp:container/cluster:Cluster::daniel-cluster
goroutine 27 [running]:
astonishing-afternoon-15745
02/07/2020, 10:29 PMbest-summer-38252
02/09/2020, 6:01 AMcold-caravan-83486
02/12/2020, 2:11 PMable-crayon-21563
02/14/2020, 4:29 AMlimited-rainbow-51650
02/14/2020, 9:48 AMlimited-rainbow-51650
02/14/2020, 10:03 AMimport * as gcp from "@pulumi/gcp";
const scaProject = new gcp.organizations.Project("StaticCodeAnalysis",{
projectId: 'static-code-analysis',
name: 'Static Code Analysis'
})
const serviceAccountPulumiScaManagement = new gcp.serviceAccount.Account("ServiceAccountPulumiScaManagement", {
accountId: "pulumiciscamgmt",
displayName: "Pulumi CI/CD Static Code Analysis Management",
project: scaProject.id
});
But here I get the error:
Diagnostics:
gcp:serviceAccount:Account (ServiceAccountPulumiScaManagement):
error: Error creating service account: googleapi: got HTTP response code 404 with body: <!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 404 (Not Found)!!1</title>
<style>
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(<//www.google.com/images/errors/robot.png>) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(<//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png>) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(<//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png>) no-repeat 0% 0%/100% 100%;-moz-border-image:url(<//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png>) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(<//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png>) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
</style>
<a href=<//www.google.com/>><span id=logo aria-label=Google></span></a>
<p><b>404.</b> <ins>That's an error.</ins>
<p>The requested URL <code>/v1/projects/projects/static-code-analysis/serviceAccounts?alt=json&prettyPrint=false</code> was not found on this server. <ins>That's all we know.</ins>
pulumi:pulumi:Stack (00-infra-global-production):
error: update failed
Is there something wrong with how the URL is constructed? Notice that there is twice the word projects
init. I guess that’s one time too much.better-actor-92669
02/16/2020, 2:16 PMbetter-actor-92669
02/16/2020, 2:17 PM