-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update appVersion to v2.51.3 #198
Conversation
Co-authored-by: Elio Bischof <[email protected]>
It appears that the check failure was not caused by a bug, but rather a minor hiccup in the GitHub workflow, especially since it was successfully with v2.51.0. I suggest rerunning the check for K8s version v1.21 to see if the problem persists. |
@kleberbaum the flakiness is fixed on main. |
depends on #202 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like someone jumped the queue #199 😄
Head branch was pushed to by a user without write access
Could we expedite the merge?😅 I'm relying on the updated Helm chart for a project deployment that utilizes the new email features introduced in Zitadel. @eliobischof |
The version v2.51.3 has been released. Maybe you can update to this version before the merge? |
@kleberbaum @rhizoet are you aware that you can always overwrite the charts default appVersion in your local helm release config? |
Thanks for the merge 🎉 I see the ZITADEL version tag in values.yaml can be overwritten. @eliobischof @rhizoet However, I prefer upgrading deployments like this: # Add ZITADEL repository
helm repo add zitadel https://charts.zitadel.com
# Get deployment values
helm get values zitadel -n mynamespace > zitadel-values.yaml
# Upgrade to the latest or a specific version
helm upgrade zitadel zitadel/zitadel -f zitadel-values.yaml -n mynamespace
helm upgrade zitadel zitadel/zitadel --version 7.14.0 -f zitadel-values.yaml -n mynamespace This method ensures clear version tracking in helm history. helm history zitadel -n mynamespace |
Ah, I didn't consider that 😃 thanks for sharing |
* Update appVersion to v2.51.0 * Update chart version to 7.13.0 * Update appVersion to v2.51.2 Co-authored-by: Elio Bischof <[email protected]> * Update chart version to 7.14.0 * Update appVersion to v2.51.3 --------- Co-authored-by: Elio Bischof <[email protected]>
* Update appVersion to v2.51.0 * Update chart version to 7.13.0 * Update appVersion to v2.51.2 Co-authored-by: Elio Bischof <[email protected]> * Update chart version to 7.14.0 * Update appVersion to v2.51.3 --------- Co-authored-by: Elio Bischof <[email protected]>
Definition of Ready
What is the current behavior?
The previously implemented workflow functionality from PR zitadel/zitadel#4544, which automatically triggered a webhook post-ZITADEL release, has been removed. Consequently, the bump workflow (introduced in #43 and discussed in Issue #105) is no longer dispatched, as it depends on this mechanism. This issue is also tracked in the Product Management Backlog under item 30889015.
What is the new behavior?
This PR updates the ZITADEL version to v2.51.0 manually.
What could be a permanent solution?
To resolve Issue #105 it may be necessary to reimplement the changes from PR zitadel/zitadel#4544 in Current ZITADEL Release Workflow.
However, the current bump workflow does not appear to be functional, as indicated by .
Your feedback and suggestions would be greatly appreciated.