Skip to content

Commit

Permalink
Merge branch 'main' of github.com:island-is/island.is into j-s/multi-…
Browse files Browse the repository at this point in the history
…subtype-remove-ff
  • Loading branch information
oddsson committed Dec 13, 2024
2 parents b532f1b + 231b35f commit fd70d4a
Show file tree
Hide file tree
Showing 45 changed files with 544 additions and 270 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ export const LiveChatIncChatPanel = ({
const n = useNamespace(namespace)

useEffect(() => {
if (!hasButtonBeenClicked && !showLauncher) {
const queryParam = new URLSearchParams(window.location.search).get('wa_lid')
if (
!hasButtonBeenClicked &&
!showLauncher &&
!(queryParam && ['t10', 't11'].includes(queryParam))
) {
return () => {
// No need for cleanup if we don't initialize widget
}
Expand Down
70 changes: 35 additions & 35 deletions charts/identity-server/values.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ auth-admin-web:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/auth-admin-web'
ingress:
Expand All @@ -59,9 +59,9 @@ auth-admin-web:
progressDeadlineSeconds: 1200
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down Expand Up @@ -270,8 +270,8 @@ services-auth-admin-api:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-admin-api'
ingress:
Expand All @@ -289,9 +289,9 @@ services-auth-admin-api:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down Expand Up @@ -369,8 +369,8 @@ services-auth-delegation-api:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-delegation-api'
ingress:
Expand All @@ -387,9 +387,9 @@ services-auth-delegation-api:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down Expand Up @@ -476,8 +476,8 @@ services-auth-ids-api:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 15
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-ids-api'
initContainer:
Expand Down Expand Up @@ -522,9 +522,9 @@ services-auth-ids-api:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 15
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '800m'
Expand Down Expand Up @@ -660,8 +660,8 @@ services-auth-personal-representative:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-personal-representative'
ingress:
Expand All @@ -678,9 +678,9 @@ services-auth-personal-representative:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down Expand Up @@ -729,8 +729,8 @@ services-auth-personal-representative-public:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-personal-representative-public'
ingress:
Expand All @@ -747,9 +747,9 @@ services-auth-personal-representative-public:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down Expand Up @@ -824,8 +824,8 @@ services-auth-public-api:
cpuAverageUtilization: 90
nginxRequestsIrate: 5
replicas:
max: 10
min: 2
max: 3
min: 1
image:
repository: '821090935708.dkr.ecr.eu-west-1.amazonaws.com/services-auth-public-api'
ingress:
Expand All @@ -846,9 +846,9 @@ services-auth-public-api:
maxUnavailable: 1
pvcs: []
replicaCount:
default: 2
max: 10
min: 2
default: 1
max: 3
min: 1
resources:
limits:
cpu: '400m'
Expand Down
Loading

0 comments on commit fd70d4a

Please sign in to comment.