Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for enablePrometheusMerge (0.22 sec)

  1. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            operator.istio.io/component: "EgressGateways"
            sidecar.istio.io/inject: "false"
          annotations:
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            {{- if .Values.meshConfig.enablePrometheusMerge }}
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            prometheus.io/path: "/stats/prometheus"
            {{- end }}
            sidecar.istio.io/inject: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            operator.istio.io/component: "IngressGateways"
            sidecar.istio.io/inject: "false"
          annotations:
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            {{- if .Values.meshConfig.enablePrometheusMerge }}
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            prometheus.io/path: "/stats/prometheus"
            {{- end }}
            sidecar.istio.io/inject: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    		// To counter this, we bump up the default to 60s to avoid overloading DNS servers.
    		DnsRefreshRate:  durationpb.New(60 * time.Second),
    		ServiceSettings: make([]*meshconfig.MeshConfig_ServiceSettings, 0),
    
    		EnablePrometheusMerge: wrappers.Bool(true),
    		DefaultProviders:      &meshconfig.MeshConfig_DefaultProviders{},
    		ExtensionProviders: []*meshconfig.MeshConfig_ExtensionProvider{
    			{
    				Name: "prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
      # See https://istio.io/docs/reference/config/istio.mesh.v1alpha1/ for all available options
      meshConfig:
        enablePrometheusMerge: true
      experimental:
        stableValidationPolicy: false
      global:
        # Used to locate istiod.
        istioNamespace: istio-system
        # List of cert-signers to allow "approve" action in the istio cluster role
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
      # See https://istio.io/docs/reference/config/istio.mesh.v1alpha1/ for all available options
      meshConfig:
        enablePrometheusMerge: true
    
      experimental:
        stableValidationPolicy: false
    
      global:
        # Used to locate istiod.
        istioNamespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    		return cl
    	}
    }
    
    func hasContainer(cl []corev1.Container, name string) bool {
    	for _, c := range cl {
    		if c.Name == name {
    			return true
    		}
    	}
    	return false
    }
    
    func enablePrometheusMerge(mesh *meshconfig.MeshConfig, anno map[string]string) bool {
    	// If annotation is present, we look there first
    	if val, f := anno[annotation.PrometheusMergeMetrics.Name]; f {
    		bval, err := strconv.ParseBool(val)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top