PathType

class gafaelfawr.models.kubernetes.PathType(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

Matching types for paths in ingress rules.

Attributes Summary

Exact

The path must match exactly.

ImplementationSpecific

Use this for regex matches with NGINX.

Prefix

Use longest prefix matching to find the correct rule.

Attributes Documentation

Exact = 'Exact'

The path must match exactly.

ImplementationSpecific = 'ImplementationSpecific'

Use this for regex matches with NGINX.

Prefix = 'Prefix'

Use longest prefix matching to find the correct rule.