-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
When creating a HostRule resource by consuming AKO as a Go library, the TLS field is required. However the CRD identifies it as optional.
Reproduction steps
- Create a
HostRuleresource which does not explicitly define a TLS section:
desired := &aviv1beta1.HostRule{
ObjectMeta: metav1.ObjectMeta{
Name: "app1",
Labels: map[string]string{
"app": "gslb",
},
},
Spec: aviv1beta1.HostRuleSpec{
VirtualHost: aviv1beta1.HostRuleVirtualHost{
FqdnType: aviv1beta1.Exact,
Fqdn: "app.default.example.com",
EnableVirtualHost: ptr.To(true),
Gslb: aviv1beta1.HostRuleGSLB{
Fqdn: "app.example.com",
},
},
},
}
- Apply it using the Go client:
_, err := akoclient.AkoV1beta1().HostRules("my-namespace").Create(ctx, desired, metav1.CreateOptions{})
- Client reports that TLS Certificate name can not be empty string.
Expected behavior
The resource is applied successfully.
Additional context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working