Skip to content

Commit

Permalink
savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeaty-cisco committed Dec 11, 2024
1 parent 6cbfca7 commit c5b5e84
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 21 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ In addition, the following tools are recommended:

### AMI

The Terraform modules in this repository require the use of AL2023 for the
Linux version for all AMIs.

The Terraform modules in this repository rely on the AMIs used for worker
nodes to be optimized for XRd. The easiest way to achieve this is to use the
[XRd Packer](https://github.com/ios-xr/xrd-packer) templates to generate
Expand Down
1 change: 0 additions & 1 deletion aws-quickstart
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ ensure_ami_exists () {
--filters \
"Name=tag:Generated_By,Values=xrd-packer" \
"Name=tag:Kubernetes_Version,Values=${KUBERNETES_VERSION}" \
"Name=tag:Amazon_Linux_Version,Values=AL2023" \
--query "Images[*].[ImageId]" \
--output text \
| head -n 1)
Expand Down
7 changes: 0 additions & 7 deletions examples/ha/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@ module "xrd_ami" {
count = var.node_ami == null ? 1 : 0

cluster_version = data.aws_eks_cluster.this.version

filters = [
{
name = "tag:Amazon_Linux_Version"
values = ["AL2023"]
}
]
}

locals {
Expand Down
13 changes: 0 additions & 13 deletions examples/overlay/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,6 @@ resource "aws_security_group" "data" {
}
}

data "http" "multus_yaml" {
url = "https://raw.githubusercontent.com/aws/amazon-vpc-cni-k8s/master/config/multus/v4.0.2-eksbuild.1/multus-daemonset-thick.yml"
}


resource "kubernetes_manifest" "multus" {
for_each = toset(compact(split("---", data.http.multus_yaml.response_body)))
depends_on = [module.node]

manifest = yamldecode(each.key)
}


module "eks_config" {
source = "../../../modules/aws/eks-config"

Expand Down

0 comments on commit c5b5e84

Please sign in to comment.