Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 449 for sidecars (0.68 sec)

  1. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq .Release.Namespace "istio-system"}}
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    {{- else }}
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    {{- end }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq .Release.Namespace "istio-system"}}
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    {{- else }}
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    {{- end }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. manifests/charts/default/templates/mutatingwebhook.yaml

    {{- $whv := dict
     "revision" .Values.revision
      "injectionURL" .Values.istiodRemote.injectionURL
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
        {{- if .injectionURL }}
        url: {{ .injectionURL }}
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

      "namespace" .Release.Namespace }}
    {{- define "core" }}
    {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer versions, so we assign
    a unique prefix to each. */}}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
        {{- if .injectionURL }}
        url: "{{ .injectionURL }}"
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/proxy_dependencies_test.go

    			false,
    		},
    		{
    			"invalid config for sidecar", sidecar,
    			sets.New(model.ConfigKey{Kind: kind.Kind(255), Name: generalName, Namespace: nsName}),
    
    			true,
    		},
    		{"mixture matched and unmatched config for sidecar", sidecar, sets.New(
    			model.ConfigKey{Kind: kind.DestinationRule, Name: drName, Namespace: nsName},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/misannotated.yaml

      annotations:
        # annotations are set by default by istio-cni, will be ignored to avoid validation errors
        sidecar.istio.io/interceptionMode: REDIRECT
        traffic.sidecar.istio.io/excludeInboundPorts: "15020"
        traffic.sidecar.istio.io/includeInboundPorts: '*'
        traffic.sidecar.istio.io/includeOutboundIPRanges: '*'
        gateway.istio.io/controller-version: "5"
    spec:
      containers:
        - name: "grafana-test"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/status_annotations.yaml.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            readiness.status.sidecar.istio.io/applicationPorts: 1,2,3
            readiness.status.sidecar.istio.io/failureThreshold: "300"
            readiness.status.sidecar.istio.io/initialDelaySeconds: "100"
            readiness.status.sidecar.istio.io/periodSeconds: "200"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/status_annotations_zeroport.yaml.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            readiness.status.sidecar.istio.io/applicationPorts: 1,2,3
            readiness.status.sidecar.istio.io/failureThreshold: "300"
            readiness.status.sidecar.istio.io/initialDelaySeconds: "100"
            readiness.status.sidecar.istio.io/periodSeconds: "200"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    		want             *TracingConfig
    	}{
    		{
    			"empty",
    			nil,
    			sidecar,
    			nil,
    			nil,
    		},
    		{
    			"default provider only",
    			nil,
    			sidecar,
    			[]string{"envoy"},
    			newTracingConfig("envoy", reportingEnabled),
    		},
    		{
    			"provider only",
    			[]config.Config{newTelemetry("istio-system", envoy)},
    			sidecar,
    			nil,
    			newTracingConfig("envoy", reportingEnabled),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

    metadata:
      labels:
        app: sidecar-injector
      name: w-istio-sidecar-injector-istio-system
    
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
          port: 443
      failurePolicy: Fail
      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top