cli: fix broken "constellation mini up" due to incompatible terraform json (#2081)

* deps: downgrade terraform-json to v0.15.0

terraform-exec requires a matching version of terraform json.
Since the latest released version of terraform-exec still uses terraform-json v0.15.0,
we need to stay on that version.

* cli: add "--skip-helm-wait" flag for "constellation init" to "constellation mini up"
This commit is contained in:
Malte Poll 2023-07-10 15:16:45 +02:00 committed by GitHub
parent ef526562df
commit 738b22caba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 67 additions and 8 deletions

View file

@ -195,6 +195,14 @@ def go_dependencies():
sum = "h1:ZSTrOEhiM5J5RFxEaFvMZVEAM1KvT1YzbEOwB2EAGjA=",
version = "v0.0.0-20180507223929-23540a00eaa3",
)
go_repository(
name = "com_github_apparentlymart_go_textseg",
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/apparentlymart/go-textseg",
sum = "h1:rRmlIsPEEhUTIKQb7T++Nz/A5Q6C9IuX2wFoYVvnCs0=",
version = "v1.0.0",
)
go_repository(
name = "com_github_apparentlymart_go_textseg_v13",
@ -2979,8 +2987,8 @@ def go_dependencies():
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/hashicorp/terraform-json",
sum = "h1:eMfvh/uWggKmY7Pmb3T85u86E2EQg6EQHgyRwf3RkyA=",
version = "v0.17.1",
sum = "h1:/gIyNtR6SFw6h5yzlbDbACyGvIhKtQi8mTsbkNd79lE=",
version = "v0.15.0",
)
go_repository(
name = "com_github_hashicorp_vault_api",
@ -5064,6 +5072,22 @@ def go_dependencies():
sum = "h1:Cn05BRLm+iRP/DZxyVSsfVyrzgjDbwHwkVt38qvXnNI=",
version = "v0.0.2",
)
go_repository(
name = "com_github_vmihailenco_msgpack",
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/vmihailenco/msgpack",
sum = "h1:wapg9xDUZDzGCNFlwc5SqI1rvcciqcxEHac4CYj89xI=",
version = "v3.3.3+incompatible",
)
go_repository(
name = "com_github_vmihailenco_msgpack_v4",
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/vmihailenco/msgpack/v4",
sum = "h1:07s4sz9IReOgdikxLTKNbBdqDMLsjPKXwvCazn8G65U=",
version = "v4.3.12",
)
go_repository(
name = "com_github_vmihailenco_msgpack_v5",
@ -5073,6 +5097,14 @@ def go_dependencies():
sum = "h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU=",
version = "v5.3.5",
)
go_repository(
name = "com_github_vmihailenco_tagparser",
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/vmihailenco/tagparser",
sum = "h1:quXMXlA39OCbd2wAdTsGDlK9RkOk6Wuw+x37wVyIuWY=",
version = "v0.1.1",
)
go_repository(
name = "com_github_vmihailenco_tagparser_v2",