-
Notifications
You must be signed in to change notification settings - Fork 4
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
[WIP] Configure custom domains #8
Conversation
tarteo
commented
Mar 1, 2024
•
edited
Loading
edited
Use the yaml in argocd.application.config to get the urls of the application
argocd_sale: Add tests
|
||
_onKeyDown: function () { | ||
this.$input.removeClass("is-invalid"); | ||
this.$input.removeClass("is-valid"); |
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.
you can include both the classes at once separated by space removeClass("is-invalid is-valid")
|
||
if (!domain) { | ||
self.$input.removeClass("is-invalid"); | ||
self.$input.removeClass("is-valid"); |
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.
you can include both the classes at once separated by space removeClass("is-invalid is-valid")
I want to add A record support |
Added the application_set model to support multiple application sets. Also cleaned up tha application code a bit.
# Conflicts: # argocd_sale/demo/product_template_demo.xml # argocd_sale/models/account_move.py # argocd_sale/tests/__init__.py # argocd_website/README.rst
…goCD and fixed commit message.
- Renamed is_master_deployment to is_master - added domain YAML overrides to application tags to be more flexible with changes in YAML layout in different application sets - application now has an is_deployed field that's True when both it and its application set are deployed - application now has an is_application_set_deployed field to indicate whether its application set is deployed - added nice colors to the lists of applications and application sets to indicate they are deployed - Added various jumbotron warnings to applications and application sets - Added a setting to disable direct deployment - Added a delay to application set destruction when calling through the job queue - It's now only possible to destroy application sets with deployed applications through the job queue
…s and application sets.
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.
Approved for testing.