added TODO

This commit is contained in:
Chris Zhu
2025-05-07 09:58:55 -07:00
parent 640d54cc9d
commit f549d5cc5f
2 changed files with 4 additions and 1 deletions

View File

@@ -12,4 +12,6 @@
- [ ] Add connection tutorial to add on endpoints
- [ ] Allow creating a one off pod even if there are no services or deployments yet.
- [ ] Automatically detect node architecture for build target
- [ ] The IP Address being reported in the DNS mapper is the private, instead of public, IP address.
- [ ] The IP Address being reported in the DNS mapper is the private, instead of public, IP address.
- [ ] Restart all services after add on update
- [ ] *Updating a template variable after add on installation is not working*

View File

@@ -1,5 +1,6 @@
class AddOns::InstallJob < ApplicationJob
def perform(add_on)
AddOns::InstallHelmChart.execute(add_on:)
# TODO: Restart the service
end
end