From 0a28c64f83f7a07fadd7843cd3042a5d92e76540 Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Wed, 18 Feb 2026 10:03:41 +1100 Subject: [PATCH 1/7] Use kcc-UID2-6321-reenable-aks-e2e branch for e2e test --- .github/workflows/run-e2e-tests-on-operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-e2e-tests-on-operator.yaml b/.github/workflows/run-e2e-tests-on-operator.yaml index 462a992e1..c217b95d2 100644 --- a/.github/workflows/run-e2e-tests-on-operator.yaml +++ b/.github/workflows/run-e2e-tests-on-operator.yaml @@ -117,7 +117,7 @@ on: jobs: e2e-test: name: E2E Test - uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@v3 + uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@kcc-UID2-6321-reenable-aks-e2e with: operator_type: ${{ inputs.operator_type }} identity_scope: ${{ inputs.identity_scope }} From d35e43933a5436ab6a82c80205f351ec064ed5c4 Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Thu, 26 Feb 2026 14:08:42 +1100 Subject: [PATCH 2/7] Revert to v3 --- .github/workflows/run-e2e-tests-on-operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-e2e-tests-on-operator.yaml b/.github/workflows/run-e2e-tests-on-operator.yaml index c217b95d2..462a992e1 100644 --- a/.github/workflows/run-e2e-tests-on-operator.yaml +++ b/.github/workflows/run-e2e-tests-on-operator.yaml @@ -117,7 +117,7 @@ on: jobs: e2e-test: name: E2E Test - uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@kcc-UID2-6321-reenable-aks-e2e + uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@v3 with: operator_type: ${{ inputs.operator_type }} identity_scope: ${{ inputs.identity_scope }} From 440f75f6af6f288d7dac2bce951aa433ee444a84 Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Thu, 26 Feb 2026 16:36:33 +1100 Subject: [PATCH 3/7] Test kcc-UID2-6321-reenable-aks-e2e --- .github/workflows/run-e2e-tests-on-operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-e2e-tests-on-operator.yaml b/.github/workflows/run-e2e-tests-on-operator.yaml index 462a992e1..c217b95d2 100644 --- a/.github/workflows/run-e2e-tests-on-operator.yaml +++ b/.github/workflows/run-e2e-tests-on-operator.yaml @@ -117,7 +117,7 @@ on: jobs: e2e-test: name: E2E Test - uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@v3 + uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-run-e2e-tests.yaml@kcc-UID2-6321-reenable-aks-e2e with: operator_type: ${{ inputs.operator_type }} identity_scope: ${{ inputs.identity_scope }} From ca966d85e61339b3a2194e0fa5adeffc6a51581e Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Tue, 3 Mar 2026 17:13:04 +1100 Subject: [PATCH 4/7] Change replica to 1 --- scripts/azure-aks/deployment/operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/azure-aks/deployment/operator.yaml b/scripts/azure-aks/deployment/operator.yaml index bc6e752d6..6521913c8 100644 --- a/scripts/azure-aks/deployment/operator.yaml +++ b/scripts/azure-aks/deployment/operator.yaml @@ -3,7 +3,7 @@ kind: Deployment metadata: name: operator-deployment spec: - replicas: 3 + replicas: 1 selector: matchLabels: app.kubernetes.io/name: operator From 294f829c60ceb1a99ccfbab420b5f0d7e3268e59 Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Wed, 4 Mar 2026 08:32:35 +1100 Subject: [PATCH 5/7] Change replica back to 3 --- scripts/azure-aks/deployment/operator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/azure-aks/deployment/operator.yaml b/scripts/azure-aks/deployment/operator.yaml index 6521913c8..bc6e752d6 100644 --- a/scripts/azure-aks/deployment/operator.yaml +++ b/scripts/azure-aks/deployment/operator.yaml @@ -3,7 +3,7 @@ kind: Deployment metadata: name: operator-deployment spec: - replicas: 1 + replicas: 3 selector: matchLabels: app.kubernetes.io/name: operator From 9d540274452b9a20a43f4ee4ee90a00981cccfdd Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Thu, 12 Mar 2026 14:44:50 +1100 Subject: [PATCH 6/7] Use smaller resrouces --- scripts/azure-aks/deployment/operator.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/azure-aks/deployment/operator.yaml b/scripts/azure-aks/deployment/operator.yaml index bc6e752d6..3df50dd69 100644 --- a/scripts/azure-aks/deployment/operator.yaml +++ b/scripts/azure-aks/deployment/operator.yaml @@ -39,11 +39,11 @@ spec: image: IMAGE_PLACEHOLDER resources: limits: - cpu: "6" - memory: "24Gi" + cpu: '2' + memory: 2Gi requests: - cpu: "6" - memory: "24Gi" + cpu: 250m + memory: 256Mi imagePullPolicy: Always securityContext: runAsUser: 1000 From cc691a486f5b43333dafc93644c6dee0db181a83 Mon Sep 17 00:00:00 2001 From: Katherine Chen Date: Wed, 18 Mar 2026 09:45:24 +1100 Subject: [PATCH 7/7] Use big resources --- scripts/azure-aks/deployment/operator.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/azure-aks/deployment/operator.yaml b/scripts/azure-aks/deployment/operator.yaml index 3df50dd69..bc6e752d6 100644 --- a/scripts/azure-aks/deployment/operator.yaml +++ b/scripts/azure-aks/deployment/operator.yaml @@ -39,11 +39,11 @@ spec: image: IMAGE_PLACEHOLDER resources: limits: - cpu: '2' - memory: 2Gi + cpu: "6" + memory: "24Gi" requests: - cpu: 250m - memory: 256Mi + cpu: "6" + memory: "24Gi" imagePullPolicy: Always securityContext: runAsUser: 1000