Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,326 for deploymentID (0.16 sec)

  1. 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)
  2. pkg/controller/deployment/rollback.go

    		//
    		// For example,
    		// A Deployment has old RS1 with annotation {change-cause:create}, and new RS2 {change-cause:edit}.
    		// Note that both annotations are copied from Deployment, and the Deployment should be annotated {change-cause:edit} as well.
    		// Now, rollback Deployment to RS1, we should update Deployment's pod-template and also copy annotation from RS1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/apps/v1beta2/conversion_test.go

    	replica := utilpointer.Int32(2)
    	rollbackTo := new(apps.RollbackConfig)
    	rollbackTo.Revision = int64(2)
    	testcases := map[string]struct {
    		deployment1 *apps.Deployment
    		deployment2 *v1beta2.Deployment
    	}{
    		"Deployment Conversion 1": {
    			deployment1: &apps.Deployment{
    				Spec: apps.DeploymentSpec{
    					Replicas:   *replica,
    					RollbackTo: rollbackTo,
    					Template: api.PodTemplateSpec{
    						Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. hack/testdata/deployment-revision2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      labels:
        name: nginx-undo
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: nginx-undo
      template:
        metadata:
          labels:
            name: nginx-undo
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:1.7.9
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 363 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should generate a warning: two services using that deployment
    # using the same port but different protocol.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiple-svc-multiple-prot
      namespace: bookinfo
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. hack/testdata/null-propagation/deployment-l1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-depl
      labels:
        l1: l1
    spec:
      selector:
        matchLabels:
          l1: l1
      template:
        metadata:
          labels:
            l1: l1
        spec:
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 278 bytes
    - Viewed (0)
  9. hack/testdata/null-propagation/deployment-l2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-depl
      labels: null
    spec:
      selector:
        matchLabels:
          l1: l1
      template:
        metadata:
          labels:
            l1: l1
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:1.7.9
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 311 bytes
    - Viewed (0)
  10. hack/testdata/retainKeys/deployment/deployment-before.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: test-deployment-retainkeys
      labels:
        app: nginx
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
          - name: nginx
            image: nginx
            ports:
            - containerPort: 80
          volumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 385 bytes
    - Viewed (0)
Back to top