Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Authz (0.06 sec)

  1. istioctl/pkg/authz/authz.go

    		Example: `  # Check AuthorizationPolicy applied to pod httpbin-88ddbcfdd-nt5jb:
      istioctl x authz check httpbin-88ddbcfdd-nt5jb
    
      # Check AuthorizationPolicy applied to one pod under a deployment
      istioctl x authz check deployment/productpage-v1
    
      # Check AuthorizationPolicy from Envoy config dump file:
      istioctl x authz check -f httpbin_config_dump.json`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    Mikalai Radchuk <******@****.***> 1714565943 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. tests/integration/security/main_test.go

    	echo1NS    namespace.Instance
    	echo2NS    namespace.Instance
    	externalNS namespace.Instance
    	serverNS   namespace.Instance
    
    	// Servers
    	apps             deployment.TwoNamespaceView
    	authzServer      authz.Server
    	localAuthzServer authz.Server
    	jwtServer        jwt.Server
    
    	i istio.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(&i, func(c resource.Context, cfg *istio.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/plugin/authz/authorization.go

    // limitations under the License.
    
    package authz
    
    import (
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authz/builder"
    	"istio.io/istio/pilot/pkg/security/trustdomain"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/all.go

    // limitations under the License.
    
    package analyzers
    
    import (
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/annotations"
    	"istio.io/istio/pkg/config/analysis/analyzers/authz"
    	"istio.io/istio/pkg/config/analysis/analyzers/deployment"
    	"istio.io/istio/pkg/config/analysis/analyzers/deprecation"
    	"istio.io/istio/pkg/config/analysis/analyzers/destinationrule"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. internal/config/policy/plugin/config.go

    	}
    
    	// Handle large OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz
    	type opaResultAllow struct {
    		Result struct {
    			Allow bool `json:"allow"`
    		} `json:"result"`
    	}
    
    	// Handle simpler OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz/allow
    	type opaResult struct {
    		Result bool `json:"result"`
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. tools/docker.yaml

      # Test images
    - name: app
      dockerfile: pkg/test/echo/docker/Dockerfile.app
      files:
      - tests/testdata/certs
      targets:
      - ${TARGET_OUT_LINUX}/client
      - ${TARGET_OUT_LINUX}/server
    
    # Sample authz server
    - name: ext-authz
      dockerfile: samples/extauthz/docker/Dockerfile
      targets:
        - ${TARGET_OUT_LINUX}/extauthz
    
    # TODO(https://github.com/istio/istio/issues/38224)
    - name: app_sidecar_rockylinux_9
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/deployment.yaml

            imagePullPolicy: {{ $.ImagePullPolicy }}
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
    {{- end }}
    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
            ports:
            - containerPort: 8000
            - containerPort: 9000
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tests/integration/ambient/testdata/requestauthn/waypoint-jwt.yaml.tmpl

      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRefs:
      - kind: Gateway
        group: gateway.networking.k8s.io
        name: waypoint
      rules:
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. internal/config/policy/opa/config.go

    	}
    
    	// Handle large OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz
    	type opaResultAllow struct {
    		Result struct {
    			Allow bool `json:"allow"`
    		} `json:"result"`
    	}
    
    	// Handle simpler OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz/allow
    	type opaResult struct {
    		Result bool `json:"result"`
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top