@@ -44,47 +44,50 @@ import (
4444)
4545
4646type Names struct {
47- Namespace string
48- OpenStackControlplaneName types.NamespacedName
49- OpenStackVersionName types.NamespacedName
50- KeystoneAPIName types.NamespacedName
51- MemcachedName types.NamespacedName
52- MemcachedCertName types.NamespacedName
53- CinderName types.NamespacedName
54- ManilaName types.NamespacedName
55- GlanceName types.NamespacedName
56- NeutronName types.NamespacedName
57- HorizonName types.NamespacedName
58- HeatName types.NamespacedName
59- TelemetryName types.NamespacedName
60- DBName types.NamespacedName
61- DBCertName types.NamespacedName
62- DBCell1Name types.NamespacedName
63- DBCell1CertName types.NamespacedName
64- RabbitMQName types.NamespacedName
65- RabbitMQCertName types.NamespacedName
66- RabbitMQCell1Name types.NamespacedName
67- RabbitMQCell1CertName types.NamespacedName
68- ServiceAccountName types.NamespacedName
69- RoleName types.NamespacedName
70- RoleBindingName types.NamespacedName
71- RootCAPublicName types.NamespacedName
72- RootCAInternalName types.NamespacedName
73- RootCAOvnName types.NamespacedName
74- RootCALibvirtName types.NamespacedName
75- SelfSignedIssuerName types.NamespacedName
76- CustomIssuerName types.NamespacedName
77- CustomServiceCertSecretName types.NamespacedName
78- CABundleName types.NamespacedName
79- OpenStackClientName types.NamespacedName
80- OVNNorthdName types.NamespacedName
81- OVNNorthdCertName types.NamespacedName
82- OVNControllerName types.NamespacedName
83- OVNControllerCertName types.NamespacedName
84- OVNDbServerNBName types.NamespacedName
85- OVNDbServerSBName types.NamespacedName
86- NeutronOVNCertName types.NamespacedName
87- OpenStackTopology []types.NamespacedName
47+ Namespace string
48+ OpenStackControlplaneName types.NamespacedName
49+ OpenStackVersionName types.NamespacedName
50+ KeystoneAPIName types.NamespacedName
51+ MemcachedName types.NamespacedName
52+ MemcachedCertName types.NamespacedName
53+ CinderName types.NamespacedName
54+ ManilaName types.NamespacedName
55+ GlanceName types.NamespacedName
56+ NeutronName types.NamespacedName
57+ HorizonName types.NamespacedName
58+ HeatName types.NamespacedName
59+ TelemetryName types.NamespacedName
60+ DBName types.NamespacedName
61+ DBCertName types.NamespacedName
62+ DBCell1Name types.NamespacedName
63+ DBCell1CertName types.NamespacedName
64+ RabbitMQName types.NamespacedName
65+ RabbitMQCertName types.NamespacedName
66+ RabbitMQCell1Name types.NamespacedName
67+ RabbitMQCell1CertName types.NamespacedName
68+ NoVNCProxyCell1CertPublicRouteName types.NamespacedName
69+ NoVNCProxyCell1CertPublicSvcName types.NamespacedName
70+ NoVNCProxyCell1CertVencryptName types.NamespacedName
71+ ServiceAccountName types.NamespacedName
72+ RoleName types.NamespacedName
73+ RoleBindingName types.NamespacedName
74+ RootCAPublicName types.NamespacedName
75+ RootCAInternalName types.NamespacedName
76+ RootCAOvnName types.NamespacedName
77+ RootCALibvirtName types.NamespacedName
78+ SelfSignedIssuerName types.NamespacedName
79+ CustomIssuerName types.NamespacedName
80+ CustomServiceCertSecretName types.NamespacedName
81+ CABundleName types.NamespacedName
82+ OpenStackClientName types.NamespacedName
83+ OVNNorthdName types.NamespacedName
84+ OVNNorthdCertName types.NamespacedName
85+ OVNControllerName types.NamespacedName
86+ OVNControllerCertName types.NamespacedName
87+ OVNDbServerNBName types.NamespacedName
88+ OVNDbServerSBName types.NamespacedName
89+ NeutronOVNCertName types.NamespacedName
90+ OpenStackTopology []types.NamespacedName
8891}
8992
9093func CreateNames (openstackControlplaneName types.NamespacedName ) Names {
@@ -200,6 +203,18 @@ func CreateNames(openstackControlplaneName types.NamespacedName) Names {
200203 Namespace : openstackControlplaneName .Namespace ,
201204 Name : "cert-rabbitmq-cell1-svc" ,
202205 },
206+ NoVNCProxyCell1CertPublicRouteName : types.NamespacedName {
207+ Name : "cert-nova-novncproxy-cell1-public-route" ,
208+ Namespace : openstackControlplaneName .Namespace ,
209+ },
210+ NoVNCProxyCell1CertPublicSvcName : types.NamespacedName {
211+ Name : "cert-nova-novncproxy-cell1-public-svc" ,
212+ Namespace : openstackControlplaneName .Namespace ,
213+ },
214+ NoVNCProxyCell1CertVencryptName : types.NamespacedName {
215+ Name : "cert-nova-novncproxy-cell1-vencrypt" ,
216+ Namespace : openstackControlplaneName .Namespace ,
217+ },
203218 OpenStackClientName : types.NamespacedName {
204219 Namespace : openstackControlplaneName .Namespace ,
205220 Name : "openstackclient" ,
0 commit comments