Skip to content

Commit

Permalink
fix(deps): Update gcloud to v481.0.0 to support python 3.12 (#191)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Andrew Peabody <[email protected]>
  • Loading branch information
renovate[bot] and apeabody authored Jun 21, 2024
1 parent 56951df commit 1d2df6b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Make will use bash instead of sh
SHELL := /usr/bin/env bash -O extglob

DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.20
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.21
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
REGISTRY_URL := gcr.io/cloud-foundation-cicd

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Setting it to `never` will *never* gcloud download and setting it to `always` wi
| destroy\_cmd\_entrypoint | On destroy, the command entrypoint you'd like to use. Can also be set to a custom script. Module's bin directory will be prepended to path. | `string` | `"gcloud"` | no |
| enabled | Flag to optionally disable usage of this module. | `bool` | `true` | no |
| gcloud\_download\_url | Custom gcloud download url. Optional. | `string` | `""` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"434.0.0"` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"481.0.0"` | no |
| jq\_download\_url | Custom jq download url. Optional. | `string` | `""` | no |
| jq\_version | The jq version to download. | `string` | `"1.6"` | no |
| module\_depends\_on | List of modules or resources this module depends on. | `list(any)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion build/int.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ tags:
- 'integration'
substitutions:
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.20'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21'
2 changes: 1 addition & 1 deletion build/lint.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ tags:
- 'lint'
substitutions:
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.20'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21'
2 changes: 1 addition & 1 deletion modules/kubectl-fleet-wrapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module "kubectl" {
| additional\_components | Additional gcloud CLI components to install. Valid value are components listed in `gcloud components list` | `list(string)` | <pre>[<br> "kubectl"<br>]</pre> | no |
| create\_cmd\_triggers | List of any additional triggers for the create command execution. | `map(any)` | `{}` | no |
| enabled | Flag to optionally disable usage of this module. | `bool` | `true` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"434.0.0"` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"481.0.0"` | no |
| impersonate\_service\_account | An optional service account to impersonate for gcloud commands. If this service account is not specified, the module will use Application Default Credentials. | `string` | `null` | no |
| kubectl\_create\_command | The kubectl command to create resources. | `string` | n/a | yes |
| kubectl\_destroy\_command | The kubectl command to destroy resources. | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion modules/kubectl-fleet-wrapper/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ variable "skip_download" {
variable "gcloud_sdk_version" {
description = "The gcloud sdk version to download."
type = string
default = "434.0.0"
default = "481.0.0"
}

variable "upgrade" {
Expand Down
2 changes: 1 addition & 1 deletion modules/kubectl-wrapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module "kubectl" {
| cluster\_name | Cluster name. Optional if use\_existing\_context is true. | `string` | `""` | no |
| create\_cmd\_triggers | List of any additional triggers for the create command execution. | `map(any)` | `{}` | no |
| enabled | Flag to optionally disable usage of this module. | `bool` | `true` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"434.0.0"` | no |
| gcloud\_sdk\_version | The gcloud sdk version to download. | `string` | `"481.0.0"` | no |
| impersonate\_service\_account | An optional service account to impersonate for gcloud commands. If this service account is not specified, the module will use Application Default Credentials. | `string` | `""` | no |
| internal\_ip | Use internal ip for the cluster endpoint. | `bool` | `false` | no |
| kubectl\_create\_command | The kubectl command to create resources. | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion modules/kubectl-wrapper/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ variable "skip_download" {
variable "gcloud_sdk_version" {
description = "The gcloud sdk version to download."
type = string
default = "434.0.0"
default = "481.0.0"
}

variable "upgrade" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ variable "jq_version" {
variable "gcloud_sdk_version" {
description = "The gcloud sdk version to download."
type = string
default = "434.0.0"
default = "481.0.0"
}

variable "gcloud_download_url" {
Expand Down

0 comments on commit 1d2df6b

Please sign in to comment.