Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for peerAuthentication (0.48 sec)

  1. pkg/config/validation/validation_test.go

    			configName: constants.DefaultAuthenticationPolicyName,
    			in:         &security_beta.PeerAuthentication{},
    			valid:      true,
    		},
    		{
    			name:       "empty mtls with selector of empty labels",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.PeerAuthentication{
    				Selector: &api.WorkloadSelector{},
    			},
    			valid:   true,
    			warning: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    	nodeType          model.NodeType
    	locality          *core.Locality
    	mesh              *meshconfig.MeshConfig
    	destRule          proto.Message
    	sidecar           *networking.Sidecar
    	peerAuthn         *authn_beta.PeerAuthentication
    	externalService   bool
    
    	meta         *model.NodeMetadata
    	istioVersion *model.IstioVersion
    	proxyIps     []string
    }
    
    func (c clusterTest) fillDefaults() clusterTest {
    	if c.proxyIps == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

        tls:
          mode: DISABLE
        connectionPool:
          http:
            idleTimeout: 100s
    ---
    `, name, app)
    }
    
    func peerAuthentication(app, mode string) string {
    	return fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: %s
    spec:
      selector:
        matchLabels:
          app: %s
      mtls:
        mode: %s
    ---
    `, app, app, mode)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    :"auto"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"max(pilot_k8s_cfg_events{type=\"PeerAuthentication\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"PeerAuthentication\", event=\"delete\"}) or max(up * 0))","format":"time_series","intervalFactor":1,"refId":"A"}],"title":"PeerAuthentication Policies","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31, 120,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    var ValidatePeerAuthentication = RegisterValidateFunc("ValidatePeerAuthentication",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.PeerAuthentication)
    		if !ok {
    			return nil, errors.New("cannot cast to PeerAuthentication")
    		}
    
    		var errs error
    		emptySelector := in.Selector == nil || len(in.Selector.MatchLabels) == 0
    
    		if emptySelector && len(in.PortLevelMtls) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    annotations: "helm.sh/resource-policy": keep labels: app: istio-pilot chart: istio heritage: Tiller istio: security release: istio name: peerauthentications.security.istio.io spec: group: security.istio.io names: categories: - istio-io - security-istio-io kind: PeerAuthentication listKind: PeerAuthenticationLi plural: peerauthentications shortNames: - pa singular: peerauthentication scope: Namespaced versions: - additionalPrinterCol: - description: Defines the mTLS mode used for peer authentication. jsonPath:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top