From 0bacbb830f78f95285223c4cc8d0545734c3bb8c Mon Sep 17 00:00:00 2001 From: rigazilla Date: Thu, 18 Jan 2024 09:15:35 +0100 Subject: [PATCH] fix yq --- .github/workflows/test-chart.yml | 2 +- test/tls_values.yaml.yq | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-chart.yml b/.github/workflows/test-chart.yml index 4a17ef5..915be5c 100644 --- a/.github/workflows/test-chart.yml +++ b/.github/workflows/test-chart.yml @@ -20,7 +20,7 @@ jobs: - uses: dcarbone/install-yq-action@v1.1.1 with: # Keep this version. merge works as expected - version: v4.2.0 + version: v4.35.1 - name: Lint run: helm lint diff --git a/test/tls_values.yaml.yq b/test/tls_values.yaml.yq index 1bbe474..988c5f0 100644 --- a/test/tls_values.yaml.yq +++ b/test/tls_values.yaml.yq @@ -26,9 +26,27 @@ deploy: security: securityRealms: - name: default + # [USER] Comment or remove this properties realm to disable authentication. + propertiesRealm: + groupProperties: + path: groups.properties + groupsAttribute: Roles + userProperties: + path: users.properties serverIdentities: ssl: keystore: alias: "server" path: "/etc/encrypt/keystore.p12" password: "password" + # [METRICS] Security realm for the metrics endpoint. + - name: metrics + propertiesRealm: + groupProperties: + path: metrics-groups.properties + relativeTo: infinispan.server.config.path + groupsAttribute: Roles + userProperties: + path: metrics-users.properties + relativeTo: infinispan.server.config.path +