Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for string (6.16 sec)

  1. tests/integration/security/authz_test.go

    	return bool(v)
    }
    
    func (v allowValue) String() string {
    	if v {
    		return "allow"
    	}
    	return "deny"
    }
    
    type authzTest struct {
    	from   echo.Instance
    	opts   echo.CallOptions
    	allow  allowValue
    	prefix string
    }
    
    func newAuthzTest() *authzTest {
    	return &authzTest{}
    }
    
    func (b *authzTest) Prefix(prefix string) *authzTest {
    	b.prefix = prefix
    	return b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}"
            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}"
            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}"
            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/hello.yaml.17.template.gen.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}"
            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}"
            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			s.addWaypoint(t, "10.0.0.10", "test-wp", c.trafficType, true)
    			s.addPods(t, "127.0.0.1", "pod1", "sa1",
    				map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    			s.assertEvent(t, s.podXdsName("pod1"))
    			s.addService(t, "svc1",
    				map[string]string{},
    				map[string]string{},
    				[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    			s.assertEvent(t, s.svcXdsName("svc1"), s.podXdsName("pod1"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    				{
    					SourceLabels: map[string]string{"app": "test"},
    				},
    			},
    			delegate: []*networking.HTTPMatchRequest{
    				{
    					SourceLabels: map[string]string{"version": "v1"},
    				},
    			},
    			expected: []*networking.HTTPMatchRequest{
    				{
    					SourceLabels: map[string]string{"app": "test", "version": "v1"},
    				},
    			},
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    			proxy: &Proxy{
    				Labels:          map[string]string{"app": "v1"},
    				Metadata:        &NodeMetadata{IstioVersion: "1.4.0", Labels: map[string]string{"app": "v1"}},
    				ConfigNamespace: "istio-system",
    			},
    			expectedListenerPatches: 1,
    			expectedClusterPatches:  1,
    		},
    
    		{
    			name: "proxy matches no envoyfilter",
    			proxy: &Proxy{
    				Labels:          map[string]string{"app": "v2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue enabled = 10;
    
      // Environment variables passed to the proxy container.
      google.protobuf.Struct env = 11;
    
      map<string, string> labels = 15;
    
      string loadBalancerIP = 16;
    
      repeated string loadBalancerSourceRanges = 17;
    
      string name = 44;
    
      // K8s node selector.
      //
      // See https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top