Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 733 for deploymentID (0.3 sec)

  1. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-deployment.yaml

    kind: Deployment
    apiVersion: apps/v1
    metadata:
      name: calico-typha-vertical-autoscaler
      namespace: kube-system
      labels:
        k8s-app: calico-typha-autoscaler
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      replicas: 1
      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

    metadata:
      name: svc-no-selector
      namespace: default
    spec:
      ports:
        - name: https
          port: 443
          protocol: TCP
          targetPort: 6443
    ---
    # this deployment is not associated with any service, so it should generate a warning
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      namespace: default
      labels:
        app: helloworld
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

                } else {
                    return null;
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public Collection<Deployment> getRunningDeployments() {
            lock.lock();
            try {
                List<Deployment> runningDeployments = new ArrayList<>();
                for (RegisteredDeployment deployment : deployments.values()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. hack/testdata/deployment-label-change2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx2
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx2
        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
    - 377 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo2
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should not generate a warning: although two services using that deployment
    # using the same port, they are in different namespaces.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: conflicting-ports
      namespace: bookinfo
      labels:
        app: conflicting-ports
        version: v1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: calico-typha-horizontal-autoscaler
      namespace: kube-system
      labels:
        k8s-app: calico-typha-autoscaler
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      replicas: 1
      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/deployment-con-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-con-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 651 bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: external-forward-proxy
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: external-forward-proxy
      template:
        metadata:
          labels:
            app: external-forward-proxy
        spec:
          securityContext:
            runAsUser: 65534
            runAsGroup: 65534
            fsGroup: 65534
          containers:
          - name: external-forward-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  9. hack/testdata/invalid-deployment-unknown-and-duplicate-fields.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: invalid-nginx-deployment
      labels:
        app: nginx
    spec:
      replicas: 3
      replicas: 4
      foo: bar
      baz: baq
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
          - name: nginx
            image: nginx:1.14.2
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 385 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-pod-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
Back to top