Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 590 for deploymentID (0.14 sec)

  1. 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)
  2. 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)
  3. cluster/addons/fluentd-gcp/scaler-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: fluentd-gcp-scaler
      namespace: kube-system
      labels:
        k8s-app: fluentd-gcp-scaler
        version: v0.5.1
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          k8s-app: fluentd-gcp-scaler
      template:
        metadata:
          labels:
            k8s-app: fluentd-gcp-scaler
        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        istio: pilot
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/deployment/services.go

    				m.Line = line
    			}
    
    			// Reporting the message for the deployment, port and conflicting services.
    			c.Report(gvk.Deployment, m)
    		}
    	}
    }
    
    // findMatchingServices returns an slice of Services that matches with deployment's pods.
    func (s *ServiceAssociationAnalyzer) findMatchingServices(r *resource.Instance, c analysis.Context) []ServiceSpecWithName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. hack/testdata/deployment-multicontainer-resources.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx-deployment-resources
      labels:
        name: nginx-deployment-resources
    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
    - 487 bytes
    - Viewed (0)
  7. hack/testdata/deployment-revision1.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:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 366 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-egressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. hack/testdata/deployment-label-change1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx1
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx1
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 353 bytes
    - Viewed (0)
Back to top