Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for Prometheus (0.29 sec)

  1. manifests/addons/values-prometheus.yaml

      global:
        scrape_interval: 15s
    
      # Match legacy addon deployment
      fullnameOverride: prometheus
    
      # use dockerhub
      image:
        repository: prom/prometheus
    
      securityContext: null
    
    configmapReload:
      prometheus:
        image:
          # Use ghcr
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Dec 01 03:42:22 GMT 2023
    - 788 bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/_helpers.tpl

    {{/* Default Prometheus is enabled if its enabled and there are no config overrides set */}} {{ define "default-prometheus" }} {{- and (not .Values.meshConfig.defaultProviders) .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.prometheus.enabled }} {{- end }} {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}} {{ define "default-sd-metrics" }} {{- and (not .Values.meshConfig.defaultProviders) .Values.telemetry.enabled .Values.telemetry.v2.enabled...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Dec 13 03:23:36 GMT 2023
    - 817 bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              (strdict "istio.io/rev" (.Revision | default "default"))
              (strdict
                "ambient.istio.io/redirection" "disabled"
                "prometheus.io/path" "/stats/prometheus"
                "prometheus.io/port" "15020"
                "prometheus.io/scrape" "true"
              ) | nindent 8 }}
          labels:
            {{- toJsonMap
              (strdict
                "sidecar.istio.io/inject" "false"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  4. helm/minio/templates/servicemonitor.yaml

            {{- toYaml .Values.metrics.serviceMonitor.relabelConfigs | nindent 6 }}
          {{- end }}
          {{- if not .Values.metrics.serviceMonitor.public }}
          bearerTokenSecret:
            name: {{ template "minio.fullname" . }}-prometheus
            key: token
          {{- end }}
      namespaceSelector:
        matchNames:
          - {{ .Release.Namespace | quote }}
      selector:
        matchLabels:
          app: {{ include "minio.name" . }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.yaml

        annotations: {}
        # The name of the service account to use.
        # If not set, the release name is used
        name: ""
    
      podAnnotations:
        prometheus.io/port: "15020"
        prometheus.io/scrape: "true"
        prometheus.io/path: "/stats/prometheus"
        inject.istio.io/templates: "gateway"
        sidecar.istio.io/inject: "true"
    
      # Define the security context for the pod.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    fullnameOverride=kiali \ kiali-server \ --repo https://kiali.org/helm-charts \ -f "${WD}/values-kiali.yaml" } > "${ADDONS}/kiali.yaml" # Set up prometheus helm3 template prometheus prometheus \ --namespace istio-system \ --version 25.8.0 \ --repo https://prometheus-community.github.io/helm-charts \ -f "${WD}/values-prometheus.yaml" \ > "${ADDONS}/prometheus.yaml" function compressDashboard() { < "${DASHBOARDS}/$1" jq -c > "${TMP}/$1" } # Set up grafana { helm3 template grafana grafana \ --namespace...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  7. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

              (strdict "istio.io/rev" (.Revision | default "default"))
              (strdict
                "prometheus.io/path" "/stats/prometheus"
                "prometheus.io/port" "15020"
                "prometheus.io/scrape" "true"
              ) | nindent 8 }}
          labels:
            {{- toJsonMap
              (strdict
                "sidecar.istio.io/inject" "false"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

          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"
    {{- if $gateway.podAnnotations }}
    {{ toYaml $gateway.podAnnotations | indent 8 }}
    {{ end }}
        spec:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  9. manifests/charts/istiod-remote/templates/configmap.yaml

      {{ $prom := include "default-prometheus" . | eq "true" }}
      {{ $sdMetrics := include "default-sd-metrics" . | eq "true" }}
      {{ $sdLogs := include "default-sd-logs" . | eq "true" }}
      {{- if or $prom $sdMetrics $sdLogs }}
        defaultProviders:
        {{- if or $prom $sdMetrics }}
          metrics:
          {{ if $prom }}- prometheus{{ end }}
          {{ if and $sdMetrics $sdLogs }}- stackdriver{{ end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  10. helm/minio/templates/deployment.yaml

                - name: MINIO_CONFIG_ENV_FILE
                  value: "/tmp/minio-config-env/config.env"
                {{- end }}
                {{- if .Values.metrics.serviceMonitor.public }}
                - name: MINIO_PROMETHEUS_AUTH_TYPE
                  value: "public"
                {{- end }}
                {{- if .Values.oidc.enabled }}
                - name: MINIO_IDENTITY_OPENID_CONFIG_URL
                  value: {{ .Values.oidc.configUrl }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top