Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 140 for Implementation (0.19 sec)

  1. manifests/charts/gateway/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pkg/test/echo/cmd/client/main.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // An example implementation of a client.
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"net/url"
    	"os"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    	// To install the xds resolvers and balancers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    // etc). The Proxy is initialized when a sidecar connects to Pilot, and populated from
    // 'node' info in the protocol as well as data extracted from registries.
    //
    // In current Istio implementation nodes use a 4-parts '~' delimited ID.
    // Type~IPAddress~ID~Domain
    type Proxy struct {
    	sync.RWMutex
    
    	// Type specifies the node type. First part of the ID.
    	Type NodeType
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. manifests/charts/README.md

    Each component in the new installer is optional. Users can install the component defined in the new installer,
    use the equivalent component in `istio-system`, configured with the official installer, or use a different
    version or implementation.
    
    For example, you may use your own Prometheus and Grafana installs, or you may use a specialized/custom
    certificate provisioning tool, or use components that are centrally managed and running in a different cluster.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/kube/controllers/example_test.go

    }
    
    // HasSynced asserts we have "synced", meaning we have processed the initial state.
    func (c *Controller) HasSynced() bool {
    	// We could check `c.pods` as well, but it is redundant due to the Run() implementation.
    	// Instead, just check `c.queue`.
    	return c.queue.HasSynced()
    }
    
    // nolint: gocritic
    func Example() {
    	// Setup our fake client. This can be pre-populated with items.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    type Rule struct {
    	chain  string
    	table  string
    	params []string
    }
    
    // Rules represents iptables for V4 and V6
    type Rules struct {
    	rulesv4 []*Rule
    	rulesv6 []*Rule
    }
    
    // IptablesRuleBuilder is an implementation for IptablesRuleBuilder interface
    type IptablesRuleBuilder struct {
    	rules Rules
    	cfg   *config.Config
    }
    
    // NewIptablesBuilders creates a new IptablesRuleBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier.go

    	TCP *tlsv3.DownstreamTlsContext
    	// HTTP describes the tls context to use for HTTP filter chains
    	HTTP *tlsv3.DownstreamTlsContext
    }
    
    var authnLog = log.RegisterScope("authn", "authn debugging")
    
    // Implementation of authn.PolicyApplier with v1beta1 API.
    type policyApplier struct {
    	// processedJwtRules is the consolidate JWT rules from all jwtPolicies.
    	processedJwtRules []*v1beta1.JWTRule
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. pkg/spiffe/spiffe.go

    func (v *PeerCertVerifier) AddMappings(certMap map[string][]*x509.Certificate) {
    	for trustDomain, certs := range certMap {
    		v.AddMapping(trustDomain, certs)
    	}
    }
    
    // VerifyPeerCert is an implementation of tls.Config.VerifyPeerCertificate.
    // It verifies the peer certificate using the root certificates associated with its trust domain.
    func (v *PeerCertVerifier) VerifyPeerCert(rawCerts [][]byte, _ [][]*x509.Certificate) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // but should apply for any default implementation. If set, it is assumed that a load balancer
      // implementation is watching for Services with a matching class. Any default load balancer
      // implementation (e.g. cloud providers) should ignore Services that set this field.
      // This field can only be set when creating or updating a Service to type 'LoadBalancer'.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery.go

    	debounceMax time.Duration
    
    	// enableEDSDebounce indicates whether EDS pushes should be debounced.
    	enableEDSDebounce bool
    }
    
    // DiscoveryServer is Pilot's gRPC implementation for Envoy's xds APIs
    type DiscoveryServer struct {
    	// Env is the model environment.
    	Env *model.Environment
    
    	// Generators allow customizing the generated config, based on the client metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top