Skip to content

Commit 0075bf4

Browse files
authored
chore: Correct version bump in examples (#86)
Correct version bump in examples
1 parent 7bf1b0e commit 0075bf4

File tree

5 files changed

+19
-21
lines changed

5 files changed

+19
-21
lines changed

.github/release-please/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"terraform-modules/spectrum": {
99
"component": "terraform-module-spectrum",
1010
"extra-files": [
11-
"/examples/k3s/main.tf",
12-
"/examples/talos/main.tf"
11+
"/examples/k3s/spectrum.tf",
12+
"/examples/talos/spectrum.tf"
1313
]
1414
},
1515
"terraform-modules/k3s": {

examples/k3s/main.tf

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,3 @@ module "k3s" {
77
ssh_user = local.ssh_user
88
ssh_port = local.ssh_port
99
}
10-
11-
provider "helm" {
12-
kubernetes {
13-
config_path = module.k3s.kubeconfig_file
14-
}
15-
}
16-
17-
module "spectrum" {
18-
depends_on = [module.k3s]
19-
source = "git::https://github.com/fluencelabs/spectrum.git//terraform-modules/spectrum?ref=terraform-module-spectrum-v0.0.1" # x-release-please-version
20-
cluster_flavour = "k3s"
21-
}

examples/k3s/spectrum.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
provider "helm" {
2+
kubernetes {
3+
config_path = module.k3s.kubeconfig_file
4+
}
5+
}
6+
7+
module "spectrum" {
8+
depends_on = [module.k3s]
9+
source = "git::https://github.com/fluencelabs/spectrum.git//terraform-modules/spectrum?ref=terraform-module-spectrum-v0.0.1" # x-release-please-version
10+
cluster_flavour = "k3s"
11+
}

examples/talos/main.tf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ module "talos" {
2929
# ]
3030
}
3131

32-
module "spectrum" {
33-
depends_on = [module.talos]
34-
source = "git::https://github.com/fluencelabs/spectrum.git//terraform-modules/spectrum?ref=terraform-module-spectrum-v0.0.1" # x-release-please-version
35-
network = "main"
36-
cluster = "default"
37-
}
38-
3932
variable "server_ip" {
4033
type = string
4134
description = "IP at which server is accessible"

examples/talos/spectrum.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module "spectrum" {
2+
depends_on = [module.talos]
3+
source = "git::https://github.com/fluencelabs/spectrum.git//terraform-modules/spectrum?ref=terraform-module-spectrum-v0.0.1" # x-release-please-version
4+
network = "main"
5+
cluster = "default"
6+
}

0 commit comments

Comments
 (0)