Skip to content

Commit a71d432

Browse files
authored
Merge pull request #833 from MetaCell/enable-keycloack-events
SA-314 Enable user events by default in accounts deployments
2 parents 1977332 + 51ae834 commit a71d432

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

applications/accounts/deploy/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ admin:
8686
user: admin
8787
role: administrator
8888
editUsernameAllowed: true
89-
useEvents: false
89+
useEvents: true
9090
identityProviders:
9191
- github
9292
- google
9393
theme:
9494
login: "keycloak"
9595
account: "keycloak"
9696
admin: "keycloak"
97-
email: "keycloak"
97+
email: "keycloak"

tools/deployment-cli-tools/ch_cli_tools/configurationgenerator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,17 +328,17 @@ def image_tag(self, image_name, build_context_path=None, dependencies=()):
328328
logging.info(f"Ignoring {ignore}")
329329
tag = generate_tag_from_content(build_context_path, ignore)
330330
logging.info(f"Content hash: {tag}")
331-
331+
332332
# Get dependencies from build context if not provided
333333
dependencies = dependencies or guess_build_dependencies_from_dockerfile(build_context_path)
334-
334+
335335
# Combine with dependency tags
336336
dep_tags = "".join(self.all_images.get(n, '') for n in dependencies)
337337
if dep_tags:
338338
logging.info(f"Dependency tags: {[(n, self.all_images.get(n, '')) for n in dependencies]}")
339339
tag = sha1((tag + dep_tags).encode("utf-8")).hexdigest()
340340
logging.info(f"Generated tag (with dependencies): {tag}")
341-
341+
342342
app_name = image_name.split("/")[-1] # the image name can have a prefix
343343
self.all_images[app_name] = tag
344344
return self.registry + image_name + (f':{tag}' if tag else '')

0 commit comments

Comments
 (0)