Skip to content

Commit 3247e89

Browse files
committed
Revert back to using ipxe
1 parent a2d6cd4 commit 3247e89

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Diff for: terraform.tfvars-example

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Packet.net
2-
auth_token = "accesstokensecret"
3-
project_id = "project_id_here"
2+
auth_token = "changeme"
3+
project_id = "changeme"
44
# spot_instance = "false"
55
# spot_price_max = ""
66
# termination_time = ""
77

88
## Machine
99
## Defaults
10-
# nodename = "node"
10+
# operating_system = "custom_ipxe"
1111
# ipxe_script_url = "https://raw.githubusercontent.com/cloudnativelabs/pxe/master/packet/coreos-alpha-packet.ipxe"
1212
# server_type = "baremetal_0"
1313
# facility = "ewr1"

Diff for: variables.tf

+3-4
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,19 @@ variable "termination_time" {
3333
variable operating_system {
3434
description = "The operating system to provision servers with."
3535
type = "string"
36-
default = "coreos_stable"
36+
default = "custom_ipxe"
3737
}
3838

3939
variable ipxe_script_url {
4040
description = "URL that points to an iPXE script to boot."
4141
type = "string"
42-
# default = "https://raw.githubusercontent.com/cloudnativelabs/pxe/master/packet/coreos-alpha-packet.ipxe"
43-
default = ""
42+
default = "https://raw.githubusercontent.com/cloudnativelabs/pxe/master/packet/coreos-alpha-packet.ipxe"
4443
}
4544

4645
variable always_pxe {
4746
description = "If true then the servers will boot via iPXE on reboots."
4847
type = "string"
49-
default = "false"
48+
default = "true"
5049
}
5150

5251
variable server_type {

0 commit comments

Comments
 (0)