Skip to content

Commit

Permalink
feat(gce): support resource-manager-tags in GCE deployment (#6287)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarulg authored Sep 27, 2024
1 parent 7be08cd commit 88d1fd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions clouddriver-google/clouddriver-google.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,3 @@ dependencies {
testImplementation "org.springframework.boot:spring-boot-test"
testImplementation "org.apache.groovy:groovy-test"
}

configurations.all {
resolutionStrategy.force 'com.google.apis:google-api-services-compute:beta-rev20201102-1.30.10'
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ class BaseGoogleInstanceDescription extends AbstractGoogleCredentialsDescription

String accountName

Map<String, String> resourceManagerTags

// The source of the image to deploy
// ARTIFACT: An artifact of type gce/image stored in imageArtifact
// STRING: A string representing a GCE image name in the current
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,8 @@ class BasicGoogleDeployHandler implements DeployHandler<BasicGoogleDeployDescrip
tags: tags,
labels: labels,
scheduling: scheduling,
serviceAccounts: serviceAccount)
serviceAccounts: serviceAccount,
resourceManagerTags: description.resourceManagerTags,)

if (GCEUtil.isShieldedVmCompatible(bootImage)) {
def shieldedVmConfig = GCEUtil.buildShieldedVmConfig(description)
Expand Down

0 comments on commit 88d1fd0

Please sign in to comment.