Documentation ¶
Index ¶
- Constants
- func EventuallyReachesConsistentState(installNamespace string)
- func GetFailurePolicy(ctx context.Context, webhookName string) *admissionregv1.FailurePolicyType
- func GetHttpEchoImage() string
- func GetTestHelper(ctx context.Context, namespace string) (*helper.SoloTestHelper, error)
- func GetTestHelperForRootDir(ctx context.Context, rootDir, namespace string) (*helper.SoloTestHelper, error)
- func GetTestReleasedVersion(ctx context.Context, repoName string) string
- func GetValidatingWebhook(ctx context.Context, webhookName string) *admissionregv1.ValidatingWebhookConfiguration
- func GetValidatingWebhookWithOffset(ctx context.Context, offset int, webhookName string) *admissionregv1.ValidatingWebhookConfiguration
- func GlooctlCheckEventuallyHealthy(offset int, testHelper *helper.SoloTestHelper, timeoutInterval string)
- func TestServerHttpResponse() string
- func ToFile(content string) string
- func UpdateAllowWarningsSetting(ctx context.Context, allowWarnings bool, installNamespace string)
- func UpdateAlwaysAcceptSetting(ctx context.Context, alwaysAccept bool, installNamespace string)
- func UpdateDisableTransformationValidationSetting(ctx context.Context, shouldDisable bool, installNamespace string)
- func UpdateFailurePolicy(ctx context.Context, webhookName string, ...)
- func UpdateReplaceInvalidRoutes(ctx context.Context, replaceInvalidRoutes bool, installNamespace string)
- func UpdateRestEdsSetting(ctx context.Context, enableRestEds bool, installNamespace string)
- func UpdateSettings(ctx context.Context, updateSettings func(settings *v1.Settings), ...)
- func UpdateSettingsWithPropagationDelay(updateSettings func(settings *v1.Settings), waitForSettingsToPropagate func(), ...)
- type KubeResourceClientSet
- func (k KubeResourceClientSet) ArtifactClient() gloov1.ArtifactClient
- func (k KubeResourceClientSet) AuthConfigClient() extauthv1.AuthConfigClient
- func (k KubeResourceClientSet) GatewayClient() gatewayv1.GatewayClient
- func (k KubeResourceClientSet) HttpGatewayClient() gatewayv1.MatchableHttpGatewayClient
- func (k KubeResourceClientSet) KubeClients() *kubernetes.Clientset
- func (k KubeResourceClientSet) KubernetesGatewayClient() gatewayclient.GatewayV1Interface
- func (k KubeResourceClientSet) ProxyClient() gloov1.ProxyClient
- func (k KubeResourceClientSet) RateLimitConfigClient() externalrl.RateLimitConfigClient
- func (k KubeResourceClientSet) RouteOptionClient() gatewayv1.RouteOptionClient
- func (k KubeResourceClientSet) RouteTableClient() gatewayv1.RouteTableClient
- func (k KubeResourceClientSet) SecretClient() gloov1.SecretClient
- func (k KubeResourceClientSet) ServiceClient() skkube.ServiceClient
- func (k KubeResourceClientSet) SettingsClient() gloov1.SettingsClient
- func (k KubeResourceClientSet) TcpGatewayClient() gatewayv1.MatchableTcpGatewayClient
- func (k KubeResourceClientSet) UpstreamClient() gloov1.UpstreamClient
- func (k KubeResourceClientSet) UpstreamGroupClient() gloov1.UpstreamGroupClient
- func (k KubeResourceClientSet) VirtualHostOptionClient() gatewayv1.VirtualHostOptionClient
- func (k KubeResourceClientSet) VirtualServiceClient() gatewayv1.VirtualServiceClient
Constants ¶
const ( // UniqueTestResourceLabel can be assigned to the resources used by kube2e tests // This unique label per test run ensures that the generated snapshot is different on subsequent runs // We have previously seen flakes where a resource is deleted and re-created with the same hash and thus // the emitter can miss the update UniqueTestResourceLabel = "gloo-kube2e-test-id" )
Variables ¶
This section is empty.
Functions ¶
func EventuallyReachesConsistentState ¶ added in v1.5.0
func EventuallyReachesConsistentState(installNamespace string)
func GetFailurePolicy ¶ added in v1.16.9
func GetFailurePolicy(ctx context.Context, webhookName string) *admissionregv1.FailurePolicyType
func GetHttpEchoImage ¶ added in v1.9.25
func GetHttpEchoImage() string
func GetTestHelper ¶ added in v1.12.48
func GetTestHelperForRootDir ¶ added in v1.17.0
func GetTestReleasedVersion ¶ added in v1.12.48
For nightly runs, we want to install a released version rather than using a locally built chart To do this, set the environment variable RELEASED_VERSION with either a version name or "LATEST" to get the last release
func GetValidatingWebhook ¶ added in v1.16.9
func GetValidatingWebhook(ctx context.Context, webhookName string) *admissionregv1.ValidatingWebhookConfiguration
func GetValidatingWebhookWithOffset ¶ added in v1.16.9
func GetValidatingWebhookWithOffset(ctx context.Context, offset int, webhookName string) *admissionregv1.ValidatingWebhookConfiguration
func GlooctlCheckEventuallyHealthy ¶ added in v1.3.16
func GlooctlCheckEventuallyHealthy(offset int, testHelper *helper.SoloTestHelper, timeoutInterval string)
GlooctlCheckEventuallyHealthy will run up until proved timeoutInterval or until gloo is reported as healthy
func TestServerHttpResponse ¶ added in v1.17.0
func TestServerHttpResponse() string
https://github.com/solo-io/gloo/issues/4043#issuecomment-772706604 We should move tests away from using the testserver, and instead depend on EphemeralContainers. The default response changed in later kube versions, which caused this value to change. Ideally the test utilities used by Gloo are maintained in the Gloo repo, so I opted to move this constant here. This response is given by the testserver from the python2 SimpleHTTPServer
func UpdateAllowWarningsSetting ¶ added in v1.16.5
func UpdateAlwaysAcceptSetting ¶ added in v1.5.0
enable/disable strict validation
func UpdateDisableTransformationValidationSetting ¶ added in v1.8.3
func UpdateFailurePolicy ¶ added in v1.16.5
func UpdateFailurePolicy(ctx context.Context, webhookName string, failurePolicy admissionregv1.FailurePolicyType)
func UpdateReplaceInvalidRoutes ¶ added in v1.8.3
func UpdateRestEdsSetting ¶ added in v1.7.0
func UpdateSettings ¶ added in v1.5.0
Types ¶
type KubeResourceClientSet ¶ added in v1.12.21
type KubeResourceClientSet struct {
// contains filtered or unexported fields
}
KubeResourceClientSet is a set of ResourceClients
func NewDefaultKubeResourceClientSet ¶ added in v1.15.0
func NewDefaultKubeResourceClientSet(ctx context.Context) (*KubeResourceClientSet, error)
func NewKubeResourceClientSet ¶ added in v1.9.25
func (KubeResourceClientSet) ArtifactClient ¶ added in v1.12.21
func (k KubeResourceClientSet) ArtifactClient() gloov1.ArtifactClient
func (KubeResourceClientSet) AuthConfigClient ¶ added in v1.14.0
func (k KubeResourceClientSet) AuthConfigClient() extauthv1.AuthConfigClient
func (KubeResourceClientSet) GatewayClient ¶ added in v1.12.21
func (k KubeResourceClientSet) GatewayClient() gatewayv1.GatewayClient
func (KubeResourceClientSet) HttpGatewayClient ¶ added in v1.12.21
func (k KubeResourceClientSet) HttpGatewayClient() gatewayv1.MatchableHttpGatewayClient
func (KubeResourceClientSet) KubeClients ¶ added in v1.12.21
func (k KubeResourceClientSet) KubeClients() *kubernetes.Clientset
func (KubeResourceClientSet) KubernetesGatewayClient ¶ added in v1.17.0
func (k KubeResourceClientSet) KubernetesGatewayClient() gatewayclient.GatewayV1Interface
func (KubeResourceClientSet) ProxyClient ¶ added in v1.12.21
func (k KubeResourceClientSet) ProxyClient() gloov1.ProxyClient
func (KubeResourceClientSet) RateLimitConfigClient ¶ added in v1.12.21
func (k KubeResourceClientSet) RateLimitConfigClient() externalrl.RateLimitConfigClient
func (KubeResourceClientSet) RouteOptionClient ¶ added in v1.12.21
func (k KubeResourceClientSet) RouteOptionClient() gatewayv1.RouteOptionClient
func (KubeResourceClientSet) RouteTableClient ¶ added in v1.12.21
func (k KubeResourceClientSet) RouteTableClient() gatewayv1.RouteTableClient
func (KubeResourceClientSet) SecretClient ¶ added in v1.12.21
func (k KubeResourceClientSet) SecretClient() gloov1.SecretClient
func (KubeResourceClientSet) ServiceClient ¶ added in v1.12.21
func (k KubeResourceClientSet) ServiceClient() skkube.ServiceClient
func (KubeResourceClientSet) SettingsClient ¶ added in v1.12.21
func (k KubeResourceClientSet) SettingsClient() gloov1.SettingsClient
func (KubeResourceClientSet) TcpGatewayClient ¶ added in v1.14.4
func (k KubeResourceClientSet) TcpGatewayClient() gatewayv1.MatchableTcpGatewayClient
func (KubeResourceClientSet) UpstreamClient ¶ added in v1.12.21
func (k KubeResourceClientSet) UpstreamClient() gloov1.UpstreamClient
func (KubeResourceClientSet) UpstreamGroupClient ¶ added in v1.12.21
func (k KubeResourceClientSet) UpstreamGroupClient() gloov1.UpstreamGroupClient
func (KubeResourceClientSet) VirtualHostOptionClient ¶ added in v1.12.21
func (k KubeResourceClientSet) VirtualHostOptionClient() gatewayv1.VirtualHostOptionClient
func (KubeResourceClientSet) VirtualServiceClient ¶ added in v1.12.21
func (k KubeResourceClientSet) VirtualServiceClient() gatewayv1.VirtualServiceClient