Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installer/pkg/config-generator/fixtures/kube-system.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ data:
availabilityZone: ""
clusterID: ""
clusterName: test
image: ami-0af8953af3ec06b7c
image: ami-09b1c714bf5aaa535
region: us-east-1
replicas: 3
kind: machineAPIOperatorConfig
Expand Down
2 changes: 1 addition & 1 deletion installer/pkg/workflow/fixtures/terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"tectonic_admin_email": "[email protected]",
"tectonic_admin_password": "fake-password",
"tectonic_aws_ec2_ami_override": "ami-0af8953af3ec06b7c",
"tectonic_aws_ec2_ami_override": "ami-09b1c714bf5aaa535",
"tectonic_aws_endpoints": "all",
"tectonic_aws_master_ec2_type": "m4.large",
"tectonic_aws_master_root_volume_iops": 100,
Expand Down
2 changes: 1 addition & 1 deletion pkg/rhcos/ami.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ func AMI(channel, region string) (ami string, err error) {
return "", fmt.Errorf("region %q is not yet supported", region)
}

return "ami-0af8953af3ec06b7c", nil
return "ami-09b1c714bf5aaa535", nil
}