Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for cdeployment (0.16 sec)

  1. manifests/charts/gateway/templates/deployment.yaml

    apiVersion: apps/v1
    kind: {{ .Values.kind | default "Deployment" }}
    metadata:
      name: {{ include "gateway.name" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tests/integration/ambient/cnirepair/main_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	common_deploy "istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. manifests/addons/gen.sh

    GRAFANA_VERSION=${GRAFANA_VERSION:-"8.0.1"}
    
    # Set up kiali
    {
    helm3 template kiali-server \
      --namespace istio-system \
      --version 1.85.0 \
      --set deployment.image_version=v1.85 \
      --include-crds \
      --set nameOverride=kiali \
      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. manifests/charts/gateway/values.yaml

      name: ""
      # revision declares which revision this gateway is a part of
      revision: ""
    
      # Controls the spec.replicas setting for the Gateway deployment if set.
      # Otherwise defaults to Kubernetes Deployment default (1).
      replicaCount:
    
      kind: Deployment
    
      rbac:
        # If enabled, roles will be created to enable accessing certificates from Gateways. This is not needed
        # when using http://gateway-api.org/.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. samples/addons/extras/zipkin.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: zipkin
      namespace: istio-system
      labels:
        app: zipkin
    spec:
      selector:
        matchLabels:
          app: zipkin
      template:
        metadata:
          labels:
            app: zipkin
            sidecar.istio.io/inject: "false"
        spec:
          containers:
            - name: zipkin
              image: openzipkin/zipkin-slim:3.4.0
              env:
                - name: STORAGE_METHOD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. docs/en/docs/fastapi-cli.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

            "org/gradle/build/**",
            "org/gradle/buildconfiguration/**",
            "org/gradle/buildinit/**",
            "org/gradle/caching/**",
            "org/gradle/concurrent/**",
            "org/gradle/deployment/**",
            "org/gradle/external/javadoc/**",
            "org/gradle/ide/**",
            "org/gradle/ivy/**",
            "org/gradle/jvm/**",
            "org/gradle/language/**",
            "org/gradle/maven/**",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. samples/addons/jaeger.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: jaeger
      namespace: istio-system
      labels:
        app: jaeger
    spec:
      selector:
        matchLabels:
          app: jaeger
      template:
        metadata:
          labels:
            app: jaeger
            sidecar.istio.io/inject: "false"
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "14269"
        spec:
          containers:
            - name: jaeger
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/pt/docs/fastapi-cli.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/cleanup.go

    		}
    		return errG.Wait().ErrorOrNil()
    	}
    	for _, f := range i.istiod {
    		f.Close()
    	}
    	return nil
    }
    
    func (i *istioImpl) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := i.cfg.SystemNamespace
    	d, err := ctx.CreateTmpDirectory("istio-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping Istio contents: %v", err)
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top