Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corral-packages maintenance for registries #53

Closed
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
8 changes: 1 addition & 7 deletions packages/aws/rancher-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,11 @@ templates:
variables:
cni:
- calico
kubernetes_version:
- v1.25.16+rke2r1
- v1.26.14+rke2r1
registry_auth:
- global
- enabled
- disabled
docker_compose_version:
- 2.18.1
rancher_version:
- 2.7.10
- 2.8.2
cert_manager_version:
- 1.11.0
- 1.15.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this work with earlier versions that we still need to test like 2.8 or 2.7?

5 changes: 1 addition & 4 deletions packages/aws/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,5 @@ variables:
- ecr
docker_compose_version:
- 2.18.1
rancher_version:
- 2.8.2
cert_manager_version:
- 1.11.0

- 1.15.0
1 change: 1 addition & 0 deletions templates/aws/registry_nodes/terraform/pools/corral.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ variable "aws_ssh_user" {}
variable "aws_security_group" {}
variable "aws_vpc" {}
variable "aws_subnet" {}
variable "aws_volume_size" {}
variable "install_docker" {}
variable "instance_type" {}
variable "airgap_setup" {}
2 changes: 1 addition & 1 deletion templates/aws/registry_nodes/terraform/pools/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "aws_instance" "registry" {

ebs_block_device {
device_name = "/dev/sda1"
volume_size = "200"
volume_size = "${var.aws_volume_size}"
volume_type = "gp3"
encrypted = true
delete_on_termination = true
Expand Down