fix: unjank the demo #85
@ -31,7 +31,9 @@ async fn main() {
|
||||
Box::new(ContinuousDelivery {
|
||||
|
||||
application: application.clone(),
|
||||
}), // TODO add monitoring, backups, multisite ha, etc
|
||||
Box::new(Monitoring {}),
|
||||
Box::new(Monitoring {
|
||||
application: application.clone(),
|
||||
}),
|
||||
],
|
||||
application,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user
The Tenant should not be visible at the applcation scope. An application will auto detect the tenant it is supposed to be in from the environment (such as the content of the loaded kubeconfig).
For example, a client cannot provision its own tenant as it may not have permission on the host cluster to do so.
There may be exceptions and more complex use cases coming up soon, but for the sake of this example we want to keep it 100% focused on the application and especially how simple it it to deploy a fully featured infrastructure around an application with as close to zero config as possible.