- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 21 for client_config (0.3 sec)
-
istioctl/pkg/writer/pilot/status_test.go
edsSyncStatus status.ConfigStatus ecdsSyncStatus status.ConfigStatus } func newXdsClientConfig(config clientConfigInput) *status.ClientConfig { meta := model.NodeMetadata{ ClusterID: cluster.ID(config.clusterID), IstioVersion: config.version, } return &status.ClientConfig{ Node: &core.Node{ Id: config.proxyID, Metadata: meta.ToStruct(), },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 6.5K bytes - Viewed (0) -
istioctl/pkg/kubeinject/kubeinject.go
valuesConfigMapKey = "values" ) type ExternalInjector struct { client kube.CLIClient clientConfig *admissionregistration.WebhookClientConfig injectorAddress string } func (e ExternalInjector) Inject(pod *corev1.Pod, deploymentNS string) ([]byte, error) { cc := e.clientConfig if cc == nil { return nil, nil } var address string if cc.URL != nil { address = *cc.URL }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 21K bytes - Viewed (0) -
istioctl/pkg/util/handlers/handlers.go
if err != nil { return nil, "", "", "", fmt.Errorf("%q does not refer to a pod: %v", resname, err) } clientConfig, err := factory.ToRESTConfig() if err != nil { return nil, "", "", "", err } clientset, err := corev1client.NewForConfig(clientConfig) if err != nil { return nil, "", "", "", err } return clientset, "", namespace, selector.String(), nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 6.3K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto
// "imagepolicy" is the name of the webhook, and kubernetes.io is the name // of the organization. // Required. optional string name = 1; // ClientConfig defines how to communicate with the hook. // Required optional WebhookClientConfig clientConfig = 2; // Rules describes what operations on what resources/subresources the webhook cares about. // The webhook cares about an operation if it matches _any_ Rule.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 22.6K bytes - Viewed (0) -
istioctl/pkg/analyze/analyze.go
}) if err != nil { return nil, err } for _, s := range secrets.Items { for _, cfg := range s.Data { clientConfig, err := clientcmd.NewClientConfigFromBytes(cfg) if err != nil { return nil, err } rawConfig, err := clientConfig.RawConfig() if err != nil { return nil, err } curContext := rawConfig.Contexts[rawConfig.CurrentContext] if curContext == nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 06:53:50 UTC 2024 - 17.6K bytes - Viewed (0) -
common/scripts/metallb-native.yaml
metadata: annotations: controller-gen.kubebuilder.io/version: v0.11.1 creationTimestamp: null name: bgppeers.metallb.io spec: conversion: strategy: Webhook webhook: clientConfig:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 23 23:56:31 UTC 2024 - 63.9K bytes - Viewed (0) -
istioctl/pkg/version/version.go
pi = append(pi, istioVersion.ProxyInfo{ ID: node.Id, IstioVersion: getIstioVersionFromXdsMetadata(node.Metadata), }) case "type.googleapis.com/envoy.service.status.v3.ClientConfig": cc := statusv3.ClientConfig{} err := resource.UnmarshalTo(&cc) if err != nil { return nil, fmt.Errorf("could not unmarshal Node: %w", err) } node := cc.Node pi = append(pi, istioVersion.ProxyInfo{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 8.3K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1/generated.proto
// "imagepolicy" is the name of the webhook, and kubernetes.io is the name // of the organization. // Required. optional string name = 1; // ClientConfig defines how to communicate with the hook. // Required optional WebhookClientConfig clientConfig = 2; // Rules describes what operations on what resources/subresources the webhook cares about. // The webhook cares about an operation if it matches _any_ Rule.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.4K bytes - Viewed (0) -
common-protos/k8s.io/api/core/v1/generated.proto
// corresponding ResourceClaim by the control plane after creating the // ResourceClaim. optional string resourceClaimTemplateName = 2; } // ClientIPConfig represents the configurations of Client IP based session affinity. message ClientIPConfig { // timeoutSeconds specifies the seconds of ClientIP type session sticky time. // The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP".
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 255.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.16.md
- `spec.additionalPrinterColumns` is removed in v1; use `spec.versions[*].additionalPrinterColumns` instead - `spec.conversion.webhookClientConfig` is moved to `spec.conversion.webhook.clientConfig` in v1 - `spec.conversion.conversionReviewVersions` is moved to `spec.conversion.webhook.conversionReviewVersions` in v1 - `spec.versions[*].schema.openAPIV3Schema` is now required when creating v1 CustomResourceDefinitions
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 11 10:00:57 UTC 2021 - 345.2K bytes - Viewed (0)