Skip to content
Open
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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uid2</groupId>
<artifactId>uid2-operator</artifactId>
<version>5.62.24</version>
<version>5.62.30</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 3 additions & 1 deletion scripts/aws/EUID_CloudFormation.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Parameters:
- m6i.4xlarge
- r6i.2xlarge
- r6i.4xlarge
- r7i.2xlarge
- r7i.4xlarge
ConstraintDescription: must be a valid EC2 instance type.
RootVolumeSize:
Description: Instance root volume size
Expand Down Expand Up @@ -90,7 +92,7 @@ Metadata:
DeployToEnvironment:
default: EUID environment to deploy to. Prod - production; Integ - integration test.
InstanceType:
default: Instance Type for EC2. Minimum 4 vCPUs needed. M5, M5a, M5n, M6i and R6i Instance types are tested. Choose 2xlarge or 4xlarge.
default: Instance Type for EC2. Minimum 8 vCPUs needed. M5, M5a, M5n, M6i, R6i and R7i Instance types are tested. Choose 2xlarge or 4xlarge.
SSHKeyName:
default: Key Name for SSH to EC2 (required)
RootVolumeSize:
Expand Down
2 changes: 1 addition & 1 deletion scripts/aws/UID_CloudFormation.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Metadata:
DeployToEnvironment:
default: UID2 environment to deploy to. Prod - production; Integ - integration test.
InstanceType:
default: Instance Type for EC2. Minimum 4 vCPUs needed. M5, M5a, M5n, M6i and R6i Instance types are tested. Choose 2xlarge or 4xlarge.
default: Instance Type for EC2. Minimum 8 vCPUs needed. M5, M5a, M5n, M6i, R6i and R7i Instance types are tested. Choose 2xlarge or 4xlarge.
SSHKeyName:
default: Key Name for SSH to EC2 (required)
RootVolumeSize:
Expand Down
6 changes: 5 additions & 1 deletion scripts/azure-aks/deployment/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ spec:
image: IMAGE_PLACEHOLDER
resources:
limits:
memory: "8Gi"
cpu: "6"
memory: "24Gi"
requests:
cpu: "6"
memory: "24Gi"
imagePullPolicy: Always
securityContext:
runAsUser: 1000
Expand Down
4 changes: 2 additions & 2 deletions scripts/azure-cc/deployment/operator.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@
],
"resources": {
"requests": {
"cpu": 3.5,
"memoryInGB": 15.5
"cpu": 6,
"memoryInGB": 24
}
},
"environmentVariables": [
Expand Down
Loading