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

Update imageUrl and memory limit for validator-api #14

Merged
merged 1 commit into from
Jan 28, 2025
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 backup/deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ spec:
mountPath: /home/igs
containers:
- name: validator-api
image: pavelrozhkov/wrapper:6.3.11
image: ghcr.io/beda-software/validator-wrapper:latest
imagePullPolicy: Always
ports:
- containerPort: 3500
Expand Down
2 changes: 1 addition & 1 deletion infra/aws-impl/tfvars/prod.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ environment = "prod"
# imageUrl = "ghcr.io/hl7au/au-fhir-core-inferno:bb8de66a310a6dcb800b71e9da83a2a6221346c3" # old working core image
imageUrl = "ghcr.io/hl7au/au-fhir-inferno:f8d23a2bcf6c6f94cfb74528107208ff2cd51e2e" # use the image that is not tagged with -nginx
platformImageUri = "ghcr.io/hl7au/au-fhir-inferno:f8d23a2bcf6c6f94cfb74528107208ff2cd51e2e-nginx" # use the image that IS tagged with -nginx
validatorImageUri = "pavelrozhkov/wrapper:6.3.11"
validatorImageUri = "ghcr.io/beda-software/validator-wrapper:latest"
usesWrapper = true
cluster_name = "sparked-k8s"
vpc_name = "sparked-k8s-vpc"
Expand Down
2 changes: 1 addition & 1 deletion infra/aws-impl/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "platformImageUri" {
variable "validatorImageUri" {
description = "Validator Image URI"
type = string
default = "pavelrozhkov/wrapper:6.3.11"
default = "ghcr.io/beda-software/validator-wrapper:latest"

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ spec:
memory: "512Mi" # Minimum memory required for scheduling
cpu: "250m" # Minimum CPU required for scheduling
limits:
memory: "1Gi" # Maximum memory usage allowed
memory: "10Gi" # Maximum memory usage allowed
cpu: "500m" # Maximum CPU usage allowed
2 changes: 1 addition & 1 deletion infra/helm/inferno/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inferno:
imageUrl: "ghcr.io/hl7au/au-fhir-inferno:68270162fcc1997a9ffac63c78530921bf0f32cf"
terminologyServer: "https://tx.dev.hl7.org.au/fhir"
externalValidatorUrl: null # This can be overridden during chart deployment
validatorImageUri: "pavelrozhkov/wrapper:6.3.11"
validatorImageUri: "ghcr.io/beda-software/validator-wrapper:latest"

controller:
enabled: false # Set to true to enable the ingress controller if you have not already installed it, multiple ingress controllers can be installed via https://kubernetes.github.io/ingress-nginx/user-guide/multiple-ingress/
Expand Down
Loading