Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for Injections (0.13 sec)

  1. src/runtime/debug.go

    // target program. This pinner in turn can be used to extend this property
    // to other objects, which debuggers can use to simplify the evaluation of
    // expressions involving multiple call injections.
    func debugPinnerV1() *Pinner {
    	p := new(Pinner)
    	p.Pin(unsafe.Pointer(p))
    	if debugPinnerKeepUnpin {
    		// Make Unpin reachable.
    		p.Unpin()
    	}
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    			in:          "hello-host-network-with-ns.yaml",
    			want:        "hello-host-network-with-ns.yaml.injected",
    			expectedLog: "Skipping injection because Deployment \"sample/hello-host-network\" has host networking enabled",
    		},
    		{
    			// Verifies ISTIO_KUBE_APP_PROBERS are correctly merged during multiple injections.
    			in:   "merge-probers.yaml",
    			want: "merge-probers.yaml.injected",
    			setFlags: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/injection.yaml

    # Broken config in a yaml config file
    #
    
    # Namespace is explicitly enabled
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: default
    ---
    # Namespace doesn't have the injection label, but is labeled for ambient
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio.io/dataplane-mode: ambient
      name: ambient
    ---
    # Namespace is explicitly disabled, Should not generate warning!
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/injection/injection.go

    )
    
    // Analyzer checks conditions related to Istio sidecar injection.
    type Analyzer struct{}
    
    var _ analysis.Analyzer = &Analyzer{}
    
    // We assume that enablement is via an istio-injection=enabled or istio.io/rev namespace label
    // In theory, there can be alternatives using Mutatingwebhookconfiguration, but they're very uncommon
    // See https://istio.io/docs/ops/troubleshooting/injection/ for more info.
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/injection/injection-image.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/slices"
    )
    
    // ImageAnalyzer checks the image of auto-injection configured with the running proxies on pods.
    type ImageAnalyzer struct{}
    
    var _ analysis.Analyzer = &ImageAnalyzer{}
    
    // injectionConfigMap is a snippet of the sidecar injection ConfigMap
    type injectionConfigMap struct {
    	Global global `json:"global"`
    }
    
    type global struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. releasenotes/notes/injection-perf.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 22 18:33:15 UTC 2023
    - 209 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    # Namespace 'enabled-namespace' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Namespace 'enabled-namespace-2' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace-2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. releasenotes/notes/fix-custom-injection-openshift.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 345 bytes
    - Viewed (0)
  9. releasenotes/notes/fix-custom-injection-runas.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 314 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

    # Namespace 'enabled-namespace' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Details-v1-pod-old is out of date and should get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top