@@ -1469,6 +1469,7 @@ var _ = Describe("OpenStackOperator controller", func() {
14691469 keystoneRoute := & routev1.Route {}
14701470
14711471 g .Expect (th .K8sClient .Get (th .Ctx , keystoneRouteName , keystoneRoute )).Should (Succeed ())
1472+ g .Expect (keystoneRoute .Spec .TLS ).Should (Not (BeNil ()))
14721473 g .Expect (keystoneRoute .Spec .TLS .Certificate ).Should (Not (BeEmpty ()))
14731474 g .Expect (keystoneRoute .Spec .TLS .Key ).Should (Not (BeEmpty ()))
14741475 g .Expect (keystoneRoute .Spec .TLS .CACertificate ).Should (Not (BeEmpty ()))
@@ -2087,6 +2088,7 @@ var _ = Describe("OpenStackOperator controller", func() {
20872088 watcherRoute := & routev1.Route {}
20882089
20892090 g .Expect (th .K8sClient .Get (th .Ctx , watcherRouteName , watcherRoute )).Should (Succeed ())
2091+ g .Expect (watcherRoute .Spec .TLS ).Should (Not (BeNil ()))
20902092 g .Expect (watcherRoute .Spec .TLS .Certificate ).Should (Not (BeEmpty ()))
20912093 g .Expect (watcherRoute .Spec .TLS .Key ).Should (Not (BeEmpty ()))
20922094 g .Expect (watcherRoute .Spec .TLS .CACertificate ).Should (Not (BeEmpty ()))
@@ -3787,6 +3789,7 @@ var _ = Describe("OpenStackOperator controller nova cell deletion", func() {
37873789 novncproxyRoute := & routev1.Route {}
37883790
37893791 g .Expect (th .K8sClient .Get (th .Ctx , novncproxyRouteName , novncproxyRoute )).Should (Succeed ())
3792+ g .Expect (novncproxyRoute .Spec .TLS ).Should (Not (BeNil ()))
37903793 g .Expect (novncproxyRoute .Spec .TLS .Certificate ).Should (Not (BeEmpty ()))
37913794 g .Expect (novncproxyRoute .Spec .TLS .Key ).Should (Not (BeEmpty ()))
37923795 g .Expect (novncproxyRoute .Spec .TLS .CACertificate ).Should (Not (BeEmpty ()))
0 commit comments