Skip to content

Commit 38a0d35

Browse files
Merge remote-tracking branch 'origin/main' into vse-UID2-000-use-jdk-image
2 parents 0b96264 + 746218b commit 38a0d35

File tree

14 files changed

+208
-102
lines changed

14 files changed

+208
-102
lines changed

.github/workflows/publish-azure-cc-enclave-docker.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,3 @@ jobs:
252252
path: ${{ env.MANIFEST_OUTPUT_DIR }}
253253
if-no-files-found: error
254254

255-
e2eAzureAks:
256-
name: E2E Azure AKS
257-
uses: ./.github/workflows/run-e2e-tests-on-operator.yaml
258-
needs: [buildImage, azureAks]
259-
with:
260-
operator_type: aks
261-
operator_image_version: ${{ needs.buildImage.outputs.image_tag }}
262-
secrets: inherit

conf/docker-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"enclave_platform": null,
4141
"failure_shutdown_wait_hours": 120,
4242
"salts_expired_shutdown_hours": 12,
43-
"keysetkeys_failed_shutdown_hours": 168,
43+
"store_refresh_stale_shutdown_hours": 12,
4444
"operator_type": "public",
4545
"disable_optout_token": true,
4646
"enable_remote_config": true,

conf/integ-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"cloud_encryption_keys_metadata_path": "http://localhost:8088/cloud_encryption_keys/retrieve",
1717
"runtime_config_metadata_path": "http://localhost:8088/operator/config",
1818
"salts_expired_shutdown_hours": 12,
19-
"keysetkeys_failed_shutdown_hours": 168,
19+
"store_refresh_stale_shutdown_hours": 12,
2020
"operator_type": "public",
2121
"disable_optout_token": true,
2222
"enable_remote_config": false,

conf/local-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"key_sharing_endpoint_provide_app_names": true,
3939
"client_side_token_generate_log_invalid_http_origins": true,
4040
"salts_expired_shutdown_hours": 12,
41-
"keysetkeys_failed_shutdown_hours": 168,
41+
"store_refresh_stale_shutdown_hours": 12,
4242
"operator_type": "public",
4343
"encrypted_files": false,
4444
"disable_optout_token": true,

conf/local-e2e-docker-private-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"optout_delta_rotate_interval": 60,
3131
"cloud_refresh_interval": 30,
3232
"salts_expired_shutdown_hours": 12,
33-
"keysetkeys_failed_shutdown_hours": 168,
33+
"store_refresh_stale_shutdown_hours": 12,
3434
"operator_type": "private",
3535
"enable_remote_config": true,
3636
"uid_instance_id_prefix": "local-private-operator"

conf/local-e2e-docker-public-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"optout_status_api_enabled": true,
3737
"cloud_refresh_interval": 30,
3838
"salts_expired_shutdown_hours": 12,
39-
"keysetkeys_failed_shutdown_hours": 168,
39+
"store_refresh_stale_shutdown_hours": 12,
4040
"operator_type": "public",
4141
"disable_optout_token": true,
4242
"enable_remote_config": true,

conf/local-e2e-private-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"client_side_token_generate_domain_name_check_enabled": false,
4242
"client_side_token_generate_log_invalid_http_origins": true,
4343
"salts_expired_shutdown_hours": 12,
44-
"keysetkeys_failed_shutdown_hours": 168,
44+
"store_refresh_stale_shutdown_hours": 12,
4545
"operator_type": "private",
4646
"enable_remote_config": true,
4747
"uid_instance_id_prefix": "local-private-operator"

conf/local-e2e-public-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"key_sharing_endpoint_provide_app_names": true,
4343
"client_side_token_generate_log_invalid_http_origins": true,
4444
"salts_expired_shutdown_hours": 12,
45-
"keysetkeys_failed_shutdown_hours": 168,
45+
"store_refresh_stale_shutdown_hours": 12,
4646
"operator_type": "public",
4747
"disable_optout_token": true,
4848
"enable_remote_config": true,

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<groupId>com.uid2</groupId>
88
<artifactId>uid2-operator</artifactId>
9-
<version>5.60.6-alpha-251-SNAPSHOT</version>
10-
9+
<version>5.60.26</version>
10+
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<vertx.version>4.5.21</vertx.version>
@@ -22,7 +22,7 @@
2222
<enclave-aws.version>2.1.0</enclave-aws.version>
2323
<enclave-azure.version>2.1.13</enclave-azure.version>
2424
<enclave-gcp.version>2.1.0</enclave-gcp.version>
25-
<uid2-shared.version>11.1.80</uid2-shared.version>
25+
<uid2-shared.version>11.1.91</uid2-shared.version>
2626
<image.version>${project.version}</image.version>
2727
<maven.compiler.source>21</maven.compiler.source>
2828
<maven.compiler.target>21</maven.compiler.target>

scripts/gcp-oidc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL "tee.launch_policy.log_redirect"="always"
88
RUN apk update && apk add --no-cache jq python3 py3-pip && \
99
python3 -m venv /venv && \
1010
. /venv/bin/activate && \
11-
pip install --no-cache-dir google-cloud-secret-manager google-auth google-api-core && \
11+
pip install --no-cache-dir google-cloud-secret-manager google-auth google-api-core packaging && \
1212
rm -rf /var/cache/apk/*
1313

1414
WORKDIR /app

0 commit comments

Comments
 (0)