Merge pull request #115064 from andir/update-tf-kubernetes
update terraform-providers.{helm,kubernetes} to 2.0.2
This commit is contained in:
commit
0722ddab3a
|
@ -398,10 +398,10 @@
|
||||||
"owner": "hashicorp",
|
"owner": "hashicorp",
|
||||||
"provider-source-address": "registry.terraform.io/hashicorp/helm",
|
"provider-source-address": "registry.terraform.io/hashicorp/helm",
|
||||||
"repo": "terraform-provider-helm",
|
"repo": "terraform-provider-helm",
|
||||||
"rev": "v1.3.2",
|
"rev": "v2.0.2",
|
||||||
"sha256": "0mpbf03483jqrwd9cx4pdn2pcv4swfs5nbp021gaqr0jf1w970x6",
|
"sha256": "119zvlkwa7ygwsjxxdl7z8cqb0c4m6gy21356jnsasf4c3557rrb",
|
||||||
"vendorSha256": null,
|
"vendorSha256": null,
|
||||||
"version": "1.3.2"
|
"version": "2.0.2"
|
||||||
},
|
},
|
||||||
"heroku": {
|
"heroku": {
|
||||||
"owner": "terraform-providers",
|
"owner": "terraform-providers",
|
||||||
|
@ -504,9 +504,10 @@
|
||||||
"owner": "hashicorp",
|
"owner": "hashicorp",
|
||||||
"provider-source-address": "registry.terraform.io/hashicorp/kubernetes",
|
"provider-source-address": "registry.terraform.io/hashicorp/kubernetes",
|
||||||
"repo": "terraform-provider-kubernetes",
|
"repo": "terraform-provider-kubernetes",
|
||||||
"rev": "v1.13.3",
|
"rev": "v2.0.2",
|
||||||
"sha256": "01hkbb81r3k630s3ww6379p66h1fsd5cd1dz14jm833nsr142c0i",
|
"sha256": "129aylw6hxa44syfnb0kkkihwvlaa6d1jnxrcbwkql6xxhn9zizf",
|
||||||
"version": "1.13.3"
|
"vendorSha256": null,
|
||||||
|
"version": "2.0.2"
|
||||||
},
|
},
|
||||||
"kubernetes-alpha": {
|
"kubernetes-alpha": {
|
||||||
"owner": "hashicorp",
|
"owner": "hashicorp",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#! nix-shell -i bash -p coreutils curl jq moreutils
|
#! nix-shell -I nixpkgs=../../../../.. -i bash -p coreutils curl jq moreutils nix
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
# vim: ft=sh
|
# vim: ft=sh
|
||||||
#
|
#
|
||||||
|
@ -161,7 +161,8 @@ if [[ -z "$vendorSha256" ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
rm -f vendor_log.txt
|
rm -f vendor_log.txt
|
||||||
vendorSha256=${BASH_REMATCH[1]}
|
# trim the results in case it they have a sha256: prefix or contain more than one line
|
||||||
|
vendorSha256=$(echo "${BASH_REMATCH[1]#sha256:}" | head -n 1)
|
||||||
# Deal with nix unstable
|
# Deal with nix unstable
|
||||||
if [[ $vendorSha256 = sha256-* ]]; then
|
if [[ $vendorSha256 = sha256-* ]]; then
|
||||||
vendorSha256=$(nix to-base32 "$vendorSha256")
|
vendorSha256=$(nix to-base32 "$vendorSha256")
|
||||||
|
|
Loading…
Reference in New Issue