Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type IngressBackendReconciler ¶
type IngressBackendReconciler struct {
// contains filtered or unexported fields
}
IngressBackendReconciler creates an Open Service Mesh IngressBackend for every ingress resource with "kubernetes.azure.com/use-osm-mtls=true". This allows nginx to use mTLS provided by OSM when contacting upstreams.
type IngressCertConfigReconciler ¶
type IngressCertConfigReconciler struct {
// contains filtered or unexported fields
}
IngressCertConfigReconciler updates the Open Service Mesh configuration to generate a client cert to be used by the ingress controller when contacting upstreams.
type IngressControllerSourceSpecer ¶ added in v0.1.0
type IngressControllerSourceSpecer interface {
IngressSourceSpec(ing *netv1.Ingress) (policyv1alpha1.IngressSourceSpec, bool, error)
}
IngressControllerSourceSpecer returns the IngressSourceSpec an Ingress consumes and a boolean indicating whether it's managed by web app routing. If an ingress is not managed by web app routing, the specer will return false and isn't guaranteed to return the IngressSourceSpec
func NewIngressControllerSourceSpecerFromFn ¶ added in v0.1.0
func NewIngressControllerSourceSpecerFromFn(fn func(ing *netv1.Ingress) (policyv1alpha1.IngressSourceSpec, bool, error)) IngressControllerSourceSpecer
NewIngressControllerNamer returns an IngressControllerSourceSpecer using a map from ingress class names to controller names