Skip to content
Merged
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 .github/workflows/nightly-eks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
--components=deploy-eks-cluster \
--set=EKS_CLUSTER_NAME=${{ inputs.cluster_name || 'zarf-nightly-eks-e2e-test' }} \
--set=EKS_INSTANCE_TYPE=${{ inputs.instance_type || 't3.medium' }} \
--set=PERMISSIONS_BOUNDARY_ARN=arn:aws:iam::205930641482:policy/uds_permissions_boundary \
--set=PERMISSIONS_BOUNDARY_ARN=arn:aws:iam::724772091398:policy/uds_permissions_boundary \
--set=PERMISSIONS_BOUNDARY_TAG=uds_permissions_boundary \
--confirm

Expand Down
3 changes: 3 additions & 0 deletions packages/distros/eks/eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ addons:
permissionsBoundary: "###ZARF_VAR_PERMISSIONS_BOUNDARY_ARN###"
tags:
PermissionsBoundary: "###ZARF_VAR_PERMISSIONS_BOUNDARY_TAG###"
configurationValues: |-
defaultStorageClass:
enabled: true

- name: vpc-cni
attachPolicyARNs:
Expand Down
12 changes: 6 additions & 6 deletions packages/distros/eks/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ components:
files:
- source: eks.yaml
target: eks.yaml
- source: https://github.com/weaveworks/eksctl/releases/download/v0.170.0/eksctl_Darwin_amd64.tar.gz
- source: https://github.com/eksctl-io/eksctl/releases/download/v0.214.0/eksctl_Darwin_amd64.tar.gz
target: binaries/eksctl_Darwin_x86_64
executable: true
shasum: 88297c757fb1bc731f9ea29931c463a4575eb37f4cee27625774c88d5e8c95e2
shasum: f154187b8497c80c490407e5fa7c90eb14fadeb996477a811725f319dc62d445
extractPath: eksctl
- source: https://github.com/weaveworks/eksctl/releases/download/v0.170.0/eksctl_Darwin_arm64.tar.gz
- source: https://github.com/eksctl-io/eksctl/releases/download/v0.214.0/eksctl_Darwin_arm64.tar.gz
target: binaries/eksctl_Darwin_arm64
executable: true
shasum: ad97a3196dc8fcbba5c501cf386ab8637663bb6a3876e20bc991a1de07a0831e
shasum: 436a9b55cca31e1bdc9a4ad252ca2a95ab9ac98526db053798a181dec725f422
extractPath: eksctl
- source: https://github.com/weaveworks/eksctl/releases/download/v0.170.0/eksctl_Linux_amd64.tar.gz
- source: https://github.com/eksctl-io/eksctl/releases/download/v0.214.0/eksctl_Linux_amd64.tar.gz
target: binaries/eksctl_Linux_x86_64
executable: true
shasum: 790b540f8931424d8c89c10dee4cb5567bff44a5e8ed018c7c3a0ac818cf2e05
shasum: 0cd97a2b29b5b0143d22c62a952e39fd8909fb11f9f50095ca177ed08d756425
extractPath: eksctl

- name: deploy-eks-cluster
Expand Down
2 changes: 1 addition & 1 deletion src/test/nightly/ecr_publish_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestECRPublishing(t *testing.T) {
testPackageVersion := "0.0.1"
testPackageFileName := fmt.Sprintf("zarf-package-%s-%s-%s.tar.zst", testPackageName, e2e.Arch, testPackageVersion)
testPackageLocation := filepath.Join(tmpDir, testPackageFileName)
registryURL := "oci://public.ecr.aws/t9t5u0z8/zarf-nightly"
registryURL := "oci://public.ecr.aws/k2w9d2q6/zarf-nightly"
upstreamPackageURL := fmt.Sprintf("%s/%s:%s", registryURL, testPackageName, testPackageVersion)
keyFlag := fmt.Sprintf("--key=%s", "./src/test/packages/zarf-test.pub")

Expand Down
Loading