Skip to content
Open
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
4 changes: 2 additions & 2 deletions applications/accounts/deploy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ admin:
user: admin
role: administrator
editUsernameAllowed: true
useEvents: false
useEvents: true
identityProviders:
- github
- google
theme:
login: "keycloak"
account: "keycloak"
admin: "keycloak"
email: "keycloak"
email: "keycloak"
Original file line number Diff line number Diff line change
Expand Up @@ -328,17 +328,17 @@ def image_tag(self, image_name, build_context_path=None, dependencies=()):
logging.info(f"Ignoring {ignore}")
tag = generate_tag_from_content(build_context_path, ignore)
logging.info(f"Content hash: {tag}")

# Get dependencies from build context if not provided
dependencies = dependencies or guess_build_dependencies_from_dockerfile(build_context_path)

# Combine with dependency tags
dep_tags = "".join(self.all_images.get(n, '') for n in dependencies)
if dep_tags:
logging.info(f"Dependency tags: {[(n, self.all_images.get(n, '')) for n in dependencies]}")
tag = sha1((tag + dep_tags).encode("utf-8")).hexdigest()
logging.info(f"Generated tag (with dependencies): {tag}")

app_name = image_name.split("/")[-1] # the image name can have a prefix
self.all_images[app_name] = tag
return self.registry + image_name + (f':{tag}' if tag else '')
Expand Down
Loading