Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 727 for cdeployment (0.34 sec)

  1. tests/integration/telemetry/api/setup_test.go

    				},
    			},
    		},
    		TLSSettings: &common.TLSSettings{
    			ProxyProvision: true,
    		},
    		Ports: []echo.Port{},
    	}
    	echos = append(echos, prom)
    
    	if err := cdeployment.SetupSingleNamespace(&apps, cdeployment.Config{Configs: echo.ConfigFuture(&echos)})(ctx); err != nil {
    		return err
    	}
    
    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/headers_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	cdeployment "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/namespace"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/deployment/internal/Deployment.java

     * limitations under the License.
     */
    
    package org.gradle.deployment.internal;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * A deployed application.
     *
     * @since 4.2
     */
    @HasInternalProtocol
    public interface Deployment {
        /**
         * Returns the latest status for this deployment.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. hack/testdata/kustomize/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: the-deployment
      labels:
        deployment: hello
    spec:
      replicas: 3
      selector:
        matchLabels:
          deployment: hello
      template:
        metadata:
          labels:
            deployment: hello
        spec:
          containers:
          - name: the-container
            image: monopole/hello:1
            command: ["/hello",
                      "--port=8080",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:31:03 UTC 2019
    - 782 bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/kustomization/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: the-deployment
    spec:
      replicas: 3
      template:
        metadata:
          labels:
            deployment: hello
        spec:
          containers:
          - name: the-container
            image: monopole/hello:1
            command: ["/hello",
                      "--port=8080",
                      "--enableRiskyFeature=$(ENABLE_RISKY)"]
            ports:
            - containerPort: 8080
            env:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 697 bytes
    - Viewed (0)
  6. hack/testdata/diff/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: test
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: test
      template:
        metadata:
          labels:
            name: test
        spec:
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 11 17:19:52 UTC 2018
    - 254 bytes
    - Viewed (0)
  7. helm/minio/templates/deployment.yaml

    {{- if eq .Values.mode "standalone" }}
    {{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
    {{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath) }}
    apiVersion: {{ template "minio.deployment.apiVersion" . }}
    kind: Deployment
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-operator/templates/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: {{.Release.Namespace}}
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      replicas: 1
      revisionHistoryLimit: {{ .Values.deploymentHistory }}
      selector:
        matchLabels:
          name: istio-operator
      template:
        metadata:
          labels:
            name: istio-operator
            {{- range $key, $val := .Values.podLabels }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. hack/testdata/deployment-multicontainer.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx-deployment
      labels:
        name: nginx-deployment
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: nginx
      template:
        metadata:
          labels:
            name: nginx
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
            - containerPort: 80
          - name: perl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 428 bytes
    - Viewed (0)
  10. 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)
Back to top