Skip to content

Commit 4134c3c

Browse files
committed
fix merge conflict
1 parent e2d56e5 commit 4134c3c

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

config-cattle-aws-existing-vpc.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
cattle-aws:
2-
<<<<<<< HEAD
3-
=======
42
request_spot_instances: false
53
spot_price: # spot instance pricing. Ex. "0.75"
64
cloudwatch_monitoring: false
7-
>>>>>>> develop
85
root_disk_size: 20
96
iam_instance_profile_name: "rancher-controlplane-role"
107
iam_instance_profile_worker: # specify if overlap_cp_etcd_worker is false and existing_vpc is true
@@ -18,17 +15,12 @@ cattle-aws:
1815
vpc_id: "vpc-1abcdgggga72a691a"
1916
subnet_id: "subnet-1f98d368767ge1e71"
2017
security_group_name: "rancher-nodes"
21-
<<<<<<< HEAD
22-
os: "ubuntu"
23-
instance_type: "t2.medium"
2418
aws_secret_access_key:
2519
aws_default_region: "eu-central-1"
26-
=======
2720
ami_id: "test123" # specify if you know the specific AMI ID. If used, keep below os field empty (not that setting it would impact).
2821
os: "" # specify the OS. Supported values: ubuntu, centos, coreos. Keep above field empty if this is being used.
2922
controlplane_instance_type: "t2.medium"
3023
worker_instance_type: "t2.large"
31-
>>>>>>> develop
3224
overlap_cp_etcd_worker: "true"
3325
overlap_node_pool:
3426
hostname_prefix: "cattle-aws-cluster"

pkg/templates/variables.go

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,6 @@ variable "default_tags" {
233233
}
234234
`
235235
var VariablesCattleAWS = `
236-
<<<<<<< HEAD
237-
=======
238236
variable "cloudwatch_monitoring" {
239237
default = "{{.CloudwatchMonitoring}}"
240238
description = "Enable/Disable cloudwatch monitoring"
@@ -265,7 +263,6 @@ variable "spot_price" {
265263
type = "string"
266264
}
267265
268-
>>>>>>> develop
269266
variable "root_disk_size" {
270267
default = "{{.RootDiskSize}}"
271268
description = "Root disk size for instances in GB"
@@ -346,13 +343,9 @@ variable "os" {
346343
type = "string"
347344
}
348345
349-
<<<<<<< HEAD
350-
variable "instance_type" {
351-
default = "{{.InstanceType}}"
352-
=======
346+
353347
variable "worker_instance_type" {
354348
default = "{{.WorkerInstanceType}}"
355-
>>>>>>> develop
356349
description = "Instance type"
357350
type = "string"
358351
}

0 commit comments

Comments
 (0)